Answers for "sql command to delete from entries in a table"

SQL
1

delete all rows from table sql

-- Quick, no possible rollback
TRUNCATE TABLE my_table;
-- With rollback
DELETE FROM my_table;
COMMIT;
Posted by: Guest on January-23-2021
0

delete from table sql

DELETE FROM `table` WHERE condition
Posted by: Guest on June-18-2021

Code answers related to "sql command to delete from entries in a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language