本文共 799 字,大约阅读时间需要 2 分钟。
1.创建用户
CREATE USER 'ying'@'%' identified by '123456';
2.赋予用户权限
GRANT ALL ON *.* TO 'ying'@'%' WITH GRANT OPTION;
刷新权限
flush PRIVILEGES;
4.查询用户
SELECT user,host,Password from mysql.`user` WHERE user='ying';
此处已经创建新用户完成!!!✌️✌️✌️
一、mysql命令行执行sql文件注:提前将文件拷贝至当前目录下。1、登录mysql
mysql -u root -p ;
2、输入密码,选择数据库
use my_database;
3、执行sql文件。
source result.sql ;
二、统计数据库中表的数量
select count(table_name) from information_schema.`TABLES` where table_schema='my_database';
问题一:后台登录mysql失败,提示‘ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES)’,如下:
1.删除root其它用户,重置root用户的密码信息,并刷新权限
UPDATE mysql.`user` SET Password=Password('123456') WHERE `User`='root';
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush PRIVILEGES
2.重新登录成功
转载地址:http://tzfma.baihongyu.com/