我正在尝试使用 where 子句授予用户更新特定列的权限。根据我所学到的,为了使用 where once 必须具有 SELECT 权限进行更新。这就是我所拥有的,我知道语法是错误的,所以你能告诉我正确的语法或在哪里可以找到它吗?
grant select, update on
fullname, address where empid>5 to updateruser;
然后我在 myemployee 上尝试了这个 grant select, update (empid, fullname) 到 updateruser where empid>105;