91-9990449935 0120-4256464 |
MySQL Drop DatabaseYou can drop/delete/remove a MySQL database easily with the MySQL command. You should be careful while deleting any database because you will lose your all the data available in your database. Syntax: Example: Let's take an example to drop a database name "employees" It will look like this: Now you can check that either your database is removed by executing the following query: Output: Here, you can see that the database "employees" is removed. Note: All the database names, table names and table fields name are case sensitive. You must have to use proper names while giving any SQL command.
Next TopicMySQL Create Table
|