SQL tutorial-Delete data |
||||||||||||||||||||||||||
Delete dataTo delete data from a table you can use
the DELETE statement [WHERE...];
TblStudent table:
DELETE FROM TblStudent WHERE Address IS NULL or Address='';
Note: Without WHERE clause, you will delete all rows of the table
|
| |||||||||||||||||||||||||
|
||||||||||||||||||||||||||