1. Start command window in administrator mode then goto Mysql_install_directory/bin path.
Example: C:\Program Files\MySQL\MySQL Server 8.0\bin
2. After executing the below command, password will be asked, after giving it, MySQL database will be connected.
mysql -u UserName -p
UserName= Username given during MySQL installation
3. After Mysql database connect execute below command to create schema.
CREATE DATABASE applicare;
4. Executing the below command will show the created database.
SHOW DATABASES;
Comments
0 comments
Article is closed for comments.