Q. To create a database only if it doesn't already exist, which clause is used?
β
Correct Answer: (B)
IF NOT EXISTS
Explanation: This question is about creating a database in MySQL. In MySQL, you can use the CREATE DATABASE command to create a new database.