Delete all rows from a table

suggest change
DELETE FROM table_name ;

This will delete everything, all rows from the table. It is the most basic example of the syntax. It also shows that DELETE statements should really be used with extra care as they may empty a table, if the WHERE clause is omitted.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents