over 9 years ago
To delete data from a table we can use either DELETE or TRUNCATE.
DELETE
If we want to delete a record from table then we use DELETE FROM statement.
Syntax:
Below statement deletes rows from table on the basis of where condition, we can define any condition in the WHERE clause:
If WHERE clause is not specified with the statement then all the records will be deleted from the given table.
Example:
We have a table with the following values.
DELETE Examples
Delete the user where id is 4:
Result
TRUNCATE
The TRUNCATE TABLE Statement
When we want to delete all the records inside a table then, use the TRUNCATE TABLE statement.
Syntax:
Example:
The below statement deletes all the records of "user" table:
Hope this will help you :)
0 Comment(s)