DROP DATABASE in MariaDB
DROP DATABASE To drop, eliminate, delete or remove a particular MariaDB database, from multiple available databases, the DROP database command is used. Syntax: DROP DATABASE name;DROP DATABASE name; Parameters: name: It is used to specify the name of the database to be dropped. Example: DROP DATABASE students;DROP DATABASE students; Explanation: The ‘students’ database will be … Read more