Answers for "oracle truncate table in procedure"

SQL
2

oracle sql truncate table

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

Code answers related to "SQL"

Browse Popular Code Answers by Language