1.创建数据库
create database mytest;
2.连接数据库
报以下错:
Access denied for user 'root'@'%' to database 'mytest'
原因:创建完数据库后,需要进行授权,在本地访问一般不会存在这个问题。
3.授权数据库操作
grant all on xxx.* to 'root'@'%' identified by 'password' with grant option;
其中:xxx代表创建的数据库; password为用户密码,在此为root的密码。
The end!