mysql权限管理

    技术2022-05-19  33

     创建用户:create user nature identified by '0';

     用户授权: grant all priviliages on *.* to nature;

       刷新授权:flush privileges;

     回收授权:revoke all privileges on *.* from nature;


    最新回复(0)