To delete the 'customers' database along with all its managed tables and associated data, which SQL command should you use?
Real Exam
Explanation:
The correct command is DROP DATABASE customers CASCADE. This command efficiently removes the database and all its managed tables in one step, without the need for additional cleanup, as all tables within are managed.