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;
Deze oefening maakt deel uit van de cursus
Introduction to Relational Databases in SQL
Oefeninstructies
Delete the university_professors table.
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
-- Delete the university_professors table
___ ___ university_professors;