Below is a selection from the "Customers" table in the Northwind sample database:
The following SQL statement deletes the customer "Alfreds Futterkiste" from the "Customers" table:
The "Customers" table will now look like this:
It is possible to delete all rows in a table without deleting the table. This means that the table structure, attributes, and indexes will be intact:
The following SQL statement deletes all rows in the "Customers" table, without deleting the table: