เราสามารถใช้คำสั่ง DELETE ร่วมกับส่วนคำสั่ง WHERE ซึ่งระบุแถวนั้น เพื่อลบแถวออกจากตาราง MySQL
ตัวอย่าง
mysql> Select * from names; +------+-----------+ | id | name | +------+-----------+ | 1 | Rahul | | 2 | Gaurav | | 3 | Raman | | 4 | Aarav | | 5 | Ram | +------+-----------+ 5 rows in set (0.00 sec) mysql> DELETE from names where id = 4; Query OK, 1 row affected (0.07 sec)
ข้อความค้นหาด้านบนจะลบแถวเดียวที่มี id =4 ออกจาก "ชื่อ" ของตาราง
mysql> Select * from names; +------+-----------+ | id | name | +------+-----------+ | 1 | Rahul | | 2 | Gaurav | | 3 | Raman | | 5 | Ram | +------+-----------+ 4 rows in set (0.00 sec)