mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
8 lines
260 B
Text
8 lines
260 B
Text
set names utf8;
|
||
create user юзер_юзер@localhost;
|
||
grant select on test.* to юзер_юзер@localhost;
|
||
user()
|
||
юзер_юзер@localhost
|
||
revoke all on test.* from юзер_юзер@localhost;
|
||
drop user юзер_юзер@localhost;
|
||
set names default;
|