SQL Delete The SQL DELETE Statement is used to delete data (rows) from a table. we can say it is used to remove records from a table. Note: DELETE FROM command cannot delete any rows of data that would violate FOREIGN KEY or other constraints. Syntax of a SQL DELETE Statement
1 2 |
DELETE FROM tablename [WHERE condition]; |
Note: The WHERE clause in the sql delete command
Continue reading »