sql delete เป็นคําสั่ง ที่ใช้ในการลบข้อมูลในตาราง โดยสามารถลบข้อมูลตามเงื่อนไข where ที่ผู้ใช้กําหนด
Database support
MySQL, Microsoft Access, SQL Server, Oracle
รูปแบบการใช้
DELETE FROM [Table-Name] WHERE clause
parameter
- [Table-Name] คือ ชื่อของตารางที่ต้องการ
- clause คือ เงื่อนไขที่ต้องการ
Example
Table : country
CountryCode
CountryName
TH
Thailand
EN
English
US
United states
JP
Japan
เมื่อต้องการลบข้อมูลที่ CountryCode=“JP” ใช้คําสั่งนี้
DELETE FROM country WHERE CountryCode = 'JP'
Output:
CountryCode
CountryName
TH
Thailand
EN
English
US
United states
ข้อมูลจาก thaicreate