Answers for "oracle delete statement"

SQL
3

delete oracle

DELETE FROM customers
WHERE last_name = 'Smith';
Posted by: Guest on March-09-2021
3

delete rows table oracle

DELETE FROM my_table;		-- all rows, commit needed
TRUNCATE TABLE my_table;	-- all rows, no possible rollback
DELETE FROM my_table WHERE my_id = 12345;
DELETE FROM my_table WHERE my_id IN (SELECT id2 FROM my_table2);
COMMIT;		-- don't forget it...
Posted by: Guest on May-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language