mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00
9 lines
260 B
Plaintext
9 lines
260 B
Plaintext
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;
|