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;
Questo esercizio fa parte del corso
Introduction to Relational Databases in SQL
Istruzioni dell'esercizio
Delete the university_professors table.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
-- Delete the university_professors table
___ ___ university_professors;