全国计算机等级考试二级MySQL教程(44)
2016-2-15编辑:ljnbset
从命令行中删除数据
这里我们将在 SQL DELETE 命令中使用 WHERE 子句来删除MySQL数据表tutorials_tbl所选的数据。
实例
以下实例将删除 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>