mysql创建只有查询权限用户
程序员文章站
2024-02-13 17:01:22
...
use mysql;
CREATE USER 'tms_select'@'%' IDENTIFIED BY '[email protected]_select';
GRANT select ON tms.* TO 'tms_select'@'%';
flush privileges;
作者 @没有故事的老大爷
小小的天, 有大大的梦想
上一篇: Vue:路由及默认的跳转