If a table is no longer needed, it can be dropped permanently using the drop table command. For example, the following statements drops the Course table:
drop table Course;able to be dropped is referenced by other tables, you have to drop other tables first. For example, if you have created the tables Course, Student and Enrollment and want to drop Course, you have to first drop Enrollment, because Course is referenced by Enrollment.