Delete tables with DROP TABLE
Obviously, the university_professors table is now no longer needed and can safely be deleted.
For table deletion, you can use the simple command:
DROP TABLE table_name;
Latihan ini adalah bagian dari kursus
Introduction to Relational Databases in SQL
Petunjuk latihan
Delete the university_professors table.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
-- Delete the university_professors table
___ ___ university_professors;