第一步:进入数据库以后,先用 show databases; 再use mysql; 再 show tables; 再 select user,host from mysql.user; 基本操作 如下图 第二步:查看原有数据库以后 再创建一个不同名字的数据库 其:创建命令:create user 'test01'@'192.168.103.41' identified by '123456'; 再用 grant all privileges on *.* to 'test01…
1.create user A identified by Apassword,创建用户,用户名是A,密码是Apassword2.grant connect to A --授予connect权限3.grant select on test to A --给指定用户的表或者视图授予select(只读)权限,其中test是表名 注意:1.如果是以普通用户(jtg1)身份登录,并创建的用户,查询时要 select * from jtg1.test才能查询出来 2. 如何直接通过select * fro…