-->
mysql中不希望客户看到太多信息,需要给客户单独创建一个用户,并授予指定一个库中一个表的权限
create user 'hello'@'%' identified by 'password'; 创建用户 grant select on cxdw.cxdw to hello@'%';给hello这个用户cxdw库 中 cxdw表的select权限
root查看
新用户查看