May 2020
Beginner
564 pages
14h 9m
English
To DELETE data from a table, you can use the following sample syntax:
DELETE FROM tablenameWHERE col1 = 'value1';
To DELETE all the data from a table, you can use the following sample syntax:
DELETE FROM tablename;
For a faster way to delete all the data from a table, you can use the following sample syntax:
TRUNCATE TABLE tablename;
Read now
Unlock full access