mysql中delete的用法:使用語法“delete from 表名稱 where 刪除條件;”,主要是用來刪除mysql數據表中的記錄,如果沒有指定where子句,那就會將mysql表中的所有記錄進行刪除。因此需要刪除整個數據表時,可以使用delete語句。
具體內容:
以下是在表 students 中的實例:
刪除 id 為 3 的行:
delete from students where id=3;
刪除所有年齡小于 21 歲的數據:
delete from students where age<20;
刪除表中的所有數據:
delete from students;
實例
以下實例將刪除 tutorial_tbl 表中 tutorial_id 為3 的記錄:
root@host# mysql -u root -p password;Enter password:*******
mysql> use TUTORIALS;
Database changed
mysql> DELETE FROM tutorials_tbl WHERE tutorial_id=3;
Query OK, 1 row affected (0.23 sec)
mysql>