Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法赋予用户创建新数据库等的完全权限,但不能访问或查看其他用户创建的数据库?我需要多个用户能够像超级用户一样创建自己的数据库,但不能影响其他用户数据库。
像这样的事情可能会有所帮助。
授予所有特权new_user\_%。* TO 'new_user'@'%';
new_user\_%
这将授予 new_user 仅访问自己创建的数据库的权限。你可以对别人做同样的事情。
希望这可以帮助。