数据库操作
查看表是否存在:show tables
查看表的定义:describe 表名或desc 表名
删除表:drop table 表名
插入数据
Insert into 表名 (字段列表) values(值列表) 单行数据
Insert into 表名 (字段列表) values(值列表1),(值列表2)… 多行数据
Insert into 新表(字段1,2,3)
Select 字段1,2,3 将查询结果插入新表
From 原表
Update 表名 set 字段=要修改的值 where 条件 修改
delete from 表名 where 条件 删除 有主外键的表,先删从表
Limit 分页
修改表名:Alter table 旧表名 rename to 新表名
添加字段:alter table 表名 add 字段名 数据类型 属性(约束,是否为空)
修改字段:alter table 表名change 原子段名 新字段名 数据类型
删除字段:alter table 表名 drop 字段名
主键约束:alter table 表名 add constraint 主键名 primary key 表名 (主键字段)
外键约束:alter table 表名 add constraint 外键名 foreign key (外键字段) references 关联表名 (关联字段)