好吧,我们都知道,可以使用GRANT PRIVILEGES
命令来限制少数用户访问mysql中的某些数据库或表。我的问题是,是否可以创建数据库并确保只能由我创建的新用户而不是root用户访问该数据库。
所以场景应该是这样的:
Root/ admin User --------> Creates a new user
Someone i.e root/ new user --------------> Creates a database with few tables
That database should only be accessed by the new user and no other user.
Even root user should not have rights to access that db or the tables within.
这怎么可能或是否可能?