参考:https://www.cnblogs.com/fslnet/p/3143344.html
创建用户
create user ytl IDENTIFIED by ‘pwd’;
查看权限
show grants for ytl;
授予权限
grant select on database.table to ytl;
参考:https://www.cnblogs.com/fslnet/p/3143344.html
创建用户
create user ytl IDENTIFIED by ‘pwd’;
查看权限
show grants for ytl;
授予权限
grant select on database.table to ytl;