1. 程式人生 > >【MySQL】drop、delete、truncate

【MySQL】drop、delete、truncate

mys 清除 mysql spa mar rom 部分 實例 mark

刪除表內數據,用 delete。格式為:

delete from 表名 where 刪除條件;

實例:刪除學生表內姓名為張三的記錄。

delete from  student where  T_name = "張三";

清除表內數據,保存表結構,用 truncate。格式為:

truncate table 表名;

實例:清除學生表內的所有數據。

truncate  table  student;

刪除表用 drop,就是啥都沒了。格式為:

drop  table  表名;

實例:刪除學生表。

drop table student;

1、當你不再需要該表時, 用 drop;

2、當你仍要保留該表,但要刪除所有記錄時, 用 truncate;

3、當你要刪除部分記錄時, 用 delete。

【MySQL】drop、delete、truncate