Create a mysql database and user

1. Log database

2, create a database phone

      
      
1
      
      
create database phone;

3. Create a user phone

      
      
1
      
      
create user phone identified by '123456';

4, grant permissions phone users in the database of phone

      
      
1
      
      
grant all on phone.* to phone;

Original: Big Box  mysql database and user creation


Guess you like

Origin www.cnblogs.com/dajunjun/p/11641080.html