How do I create a mysql database?



How do I create a mysql database?..

Answer / Anjali Chaudhary

To create a new MySQL database, you can use the CREATE DATABASE command. Here's an example:

```sql
CREATE DATABASE <database_name>;
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

What is 'mysqlimport'?

1 Answers  


What are the two types of queries?

1 Answers  


What is mysql ndb?

1 Answers  


What are the mysql database files stored in system ?

1 Answers  


What is the full meaning of mysql?

1 Answers  


How to insert html code into mysql database using php?

1 Answers  


how to Return total number of rows.

1 Answers  


Which is faster innodb or myisam?

1 Answers  


how to get only updated, deleted , inserted records after certain interval time in mysql with out using triggers...

1 Answers  


How to represent ENUMs and SETs internally?

1 Answers  


What is table level locking in mysql?

1 Answers  


How do I clear the screen in mysql?

1 Answers  


Categories