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;
Bu egzersiz
Introduction to Relational Databases in SQL
kursunun bir parçasıdırEgzersiz talimatları
Delete the university_professors table.
Uygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
-- Delete the university_professors table
___ ___ university_professors;