1

There is MySQL installed on machine but MySQL Workbench is not installed. Generally, we do create the DB using the workbench. Is there any way to create a new Database without using MySQL Workbench?

1
  • Strange question, there are loads of alternatives to workbench but you should always instal client so that you can manage the dB. The question suggests you want to instal dB but not an ide? Commented Oct 10, 2019 at 10:45

1 Answer 1

1

It can be easily done by using the below command. You can do this via CLI via execute option:

mysql -u username -p -e "CREATE DATABASE `new_database_name_to_create`";
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.