别名
select 列名 as 别名 from 表名 ;
去重
select distinct 列名 from 表名 ;
排序
select * from student order by 列名;
以asc 结尾 表示升序,以desc结尾表示降序
默认升序;
判断null
不能用 ==
可以用 <=> ,或者 is null, is not null;
修改
update 表名 set 修改的内容 where 条件;
删除
delete from 表名 where 条件;
注:如果没有加where条件,会删除表里的内容;
约束条件
①not null------------------create table 表名 (属性 not null);
约束此表中某属性的值不能为Null;
② unique----------------create table 表名 (属性 unique);
约束此表中某一属性只能唯一,不能重复;
③default------------------create table 表名 (属性 default );
约束此表中某一属性只能选择default 中的值;
④主键约束----------create table 表名 (属性 primary key auto_increment);
⑤外键约束-----------create table (列名 类型,foreign key 列名 references 其他表名(其他表中列名);
⑥check约束 ----------create table 表名(列表 类型,check (列名条件);