Friday 21 March 2014

DELETE

DELETE :


DELETE FROM table_name
WHERE some_column=some_value
or
DELETE FROM table_name
(Note: Deletes the entire table!!)
DELETE * FROM table_name
(Note: Deletes the entire table!!)

No comments:

Post a Comment