时间:2021-07-01 10:21:17 帮助过:3人阅读
2、对表的操作
1 mysql> drop tables test; #删除test表 2 mysql> alter table employee rename emp; #修改表名 3 mysql> desc emp; #查看表结构 4 mysql> show create table emp\G; #查看表详细结构,可加\G 5 mysql> truncate emp; #清空表 6 mysql> delete from employee where id=18; #删除表中某一条记录用delete
MySQL常用SQL语句
标签:rom sele sel trunc tables name 删除 let where