📅  最后修改于: 2022-03-11 15:00:00.839000             🧑  作者: Mango
# user list
select user from mysql.user
# add permission to user
grant on to
example :
grant select on std to "Akash"
# create user
create user "username"@"localhost" identified by "password"
# show user permission
show grant for "username"@"localhost"