MySQL 刪除資料

2022-08-11 11:51:15 字數 666 閱讀 7546

刪除資料的語句有三種:delete、drop、truncate。

1、delete語句

delete 語句用於刪除表中的行。

語法

delete

from 表名稱 where 列名稱 = 值

例如

--

刪除某一行

delete

from emp where empno=

7369;

2、drop語句

用於刪除表(注:將表的結構、屬性、索引也會被刪除。)

語法

drop

table 表名稱

例如

drop

table emp;

3、truncate語句

刪除表內的資料(注:僅刪除表內的資料,不刪除表本身)
語法

truncate

table 表名

例如

truncate

table emp;

MySQL刪除資料

mysql通過delete從表中刪除 去掉 資料。可以從表中刪除特定的行或者從表中刪除所有的行。下面語句是從customer表中刪除一行 delete from customers where cust id 10006 先檢視表customers在刪除前的成員 select cust id,cus...

MySQL 刪除資料

從資料表中刪除資料使用 delete 語句,delete 語句允許用 where 子句指定刪除條件。語法格式 delete from table name where table name 要執行刪除操作的表 where 為可選引數,用於指定刪除條件,如果沒有 where 子句,將刪除表中的所有記錄...

MYSQL刪除資料

884 535 qq.com 一 mysql 刪除表的幾種情況 1 drop table table name 刪除表全部資料和表結構,立刻釋放磁碟空間,不管是 innodb 和 myisam 例項,刪除學生表 drop table student 2 truncate table table na...