alter 修改表的结构
alter table 表名 add 新的字段 类型-----增加
alter table 表名 drop 字段名称-----删除
1.增加表的列表项
2.删除表的列表项
3. 第一步--创建表
4.第二步--增加内容
条件查询
关系运行符 > 、< 、=、>=、<= 、!=或者<>表示不等于
逻辑运算符 and or not
判断空 is null ‘’或者”” 不是null 非空 is not null
聚合函数 sum、max、min、svg、count
As 别名
条件顺序不能乱
Select
from
Where-----家加条件
Group by-------分组
Having------必须出现在group的后面如果没有group则不能使用having
Order by-----排序
limit----分页
1.Select * from 表名 # 无条件查询,即查询所有数据
在上述表中选一个id=5 并且 sex="男";
select * from hulu where id=5 and sex="男"
在上述表中选一个id=5 或者 sex="女";
select * from hulu where sex="女" or age=8
在上述表中选一个年龄>=8
select * from hulu where age>=8
在上述表中选一个年龄不等于8 (两种写法)
select * from hulu where age!=8
select * from hulu where age!=8
select * from hulu where age!=8
select * from hulu where age<>8
判断age是否有空---把age是空值的列出来
select * from hulu where age is null
判断age是否没有有空--把age不是空值的列出来-
select * from hulu where age is not null
对这个表的年龄进行求和
select sum(age) as allsum from hulu
求年龄中最大的
select max(age) as allsum from hulu
求年龄中最小的
select min(age) as allsum from hulu
count里随便填一个列表名统计总的列表数
select count(age) as allcount from hulu
where模糊查询---长得像不用精准
Select * from 表名 where 列表名 like ‘%条件%’ #包含liu的名称的用户
名字里面带娃的会被显示出来
select * from hulu where name like '%娃%'
前面的 _相当于占位 只要这个名字中间的是娃就可以满足条件
select * from hulu where name like '_娃%'
分页:四个值 1.当前页--pagenone 2.每页显示条数---pagesize(程序员决定)
3.总页数pagecount=math.cell(allcount/pagesize) ---向上取整
Select * from hulu limit 3,3 第一个数代表下标 第二个代表查询的数量
\
外健
一对多(一个部门对应多个职位) 多对一 (多个人对应一个部门)多对多(老师和学生之间)
外键 foreign key 完成外键的约束
CONSTRAINT FOREIGN key(新表的字段) REFERENCES 主表(引用字段)
对于编程人员而言,不建议使用物理外键,建议使用逻辑外键(要求对表的关系特别熟悉)
第一步创建 小表
第二步把大表和小表关联起来
名字是外键名自己起的 字段是--你要与小表链接的列表名 参考数据库---这个表所在的数据库
参考表---小表名 参考字段---小表中外键的在列表名