SQL语句

constraint

foreign key

references

自增auto_increment




数据库及表的修改和删除

重命名表:

alter table 表名 add 列名 rename 新名

删除表:

drop table 表名

对一列的修改:

alter table 表名 add 列名 数据类型 约束

after xx        first

删除一列:

alter table 表名 drop 列名

重命名一列:

alter table 表名 change 原列名 新列名 数据类型 约束


查表:

select

连接查询:

将多表看作一个表,

group by一般用到"每"这个字,都会使用分组

改表:

update 表名 set 列1=值1,列2=值2 where 条件

增:

insert into 表名()values

删:

delete from 表名 where 条件

你可能感兴趣的:(SQL语句)