Answers for "Which of the following SQL commands can be used for deleting all rows from a table?"

SQL
2

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

sql comand for removing data from table

select '123'+'123' as result;
Posted by: Guest on July-02-2021

Code answers related to "Which of the following SQL commands can be used for deleting all rows from a table?"

Code answers related to "SQL"

Browse Popular Code Answers by Language