mariadb 创建用户
创建并授权
grant all privileges on [table_name].* to '[username]'@'localhost' identified by '[password]';
刷新权限
flush privileges;
创建并授权
grant all privileges on [table_name].* to '[username]'@'localhost' identified by '[password]';
刷新权限
flush privileges;