如果你知道的话,请提出建议。
发布于 2023-03-28 06:10:00
要授予更改数据的特权,您需要精确地授予您列出的那些:
grant select, insert, update, delete on the_table to the_user;
只允许表的所有者(=创建者)在表上运行DDL。所以没有什么可以撤销的。
https://dba.stackexchange.com/questions/325278
相似问题