ALTER TABLE Table_Name DROP PRIMARY KEY CASCADE;
drop table Table_name cascade constraints;
What exactly happening here with the above two statements. in the first step we are dropping Primary key and in the next dropping the table itself.
Am in a confusion and not able get what is going exactly.
Thanks