Answers for "delete all table in oracle"

SQL
4

delete column from table oracle PL SQL

ALTER TABLE table_name DROP COLUMN column_name;
Posted by: Guest on March-13-2020
0

how to remove tablespace in oracle

DROP TABLESPACE tbs_02
   INCLUDING CONTENTS AND DATAFILES;
Posted by: Guest on October-02-2020
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