How to delete a database from mysql server.



How to delete a database from mysql server...

Answer / Sarvesh Khan

To delete a database in MySQL, you can use the DROP DATABASE command. Here's an example:

```sql
DROP DATABASE your_database_name;
```
Replace `your_database_name` with the name of the database you want to delete.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

How to run a sql statement?

1 Answers  


What is 'mysqladmin' in mysql?

1 Answers  


how we will Show selected records sorted in an ascending (asc) or descending (desc).

1 Answers  


What is mysql community edition?

1 Answers  


how to Return total number of rows.

1 Answers  


What is RMS Migrations

1 Answers   Steria,


Can we write procedure in mysql?

1 Answers  


What is longblob in mysql?

1 Answers  


What is the use of innodb in mysql?

1 Answers  


How to define numeric 9(3) in db2 table without decimal point??

1 Answers  


What is the storage engine for mysql?

1 Answers  


What is text in mysql?

1 Answers  


Categories