which of the following statements will delete the `world` database and its entire contents on execution, but return no error if it doesn’t exist?

Ignoring any warnings that may be issued, which of the following statements will delete the `world`
database and its entire contents on execution, but return no error if it doesn’t exist?

Ignoring any warnings that may be issued, which of the following statements will delete the `world`
database and its entire contents on execution, but return no error if it doesn’t exist?

A.
DROP DATABASE `world` IGNORE ERRORS

B.
DROP IF EXISTS DATABASE `world`

C.
DROP DATABASE IF EXISTS `world`

D.
DELETE DATABASE `world` IGNORE ERRORS

E.
DELETE IF EXISTS DATABASE `world`

F.
DELETE DATABASE IF EXISTS `world`



Leave a Reply 0

Your email address will not be published. Required fields are marked *