mysql中delete的用法

寻技术 Mysql 10小时前 5

具体内容:

以下是在表 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>


关闭

用微信“扫一扫”