Answers for "drop table cascade constraints"

SQL
1

oracle sql drop table

DROP TABLE my_table;
-- To 'really' free space
DROP TABLE my_table PURGE;
Posted by: Guest on January-23-2021
2

drop cascade

drop table if exists table_name cascade;
Posted by: Guest on February-02-2021

Code answers related to "drop table cascade constraints"

Code answers related to "SQL"

Browse Popular Code Answers by Language