May 2020
Beginner
564 pages
14h 9m
English
If you want to delete all the rows from a table, you can use the DELETE clause without the WHERE clause.
You can execute the following code to delete all the rows from the allstarfull table in the yourschema database:
USE yourschema; DELETE FROM allstarfull;
The previous code deletes everything from the allstarfull table.
Read now
Unlock full access