where 句を使用して、特定の列を更新するユーザー権限を付与しようとしています。私が学んだことに基づいて、どこを使用して更新するには、SELECT権限が必要です。これは私が持っているもので、構文が間違っていることはわかっているので、正しい構文またはその場所を教えてください。
grant select, update on
fullname, address where empid>5 to updateruser;
次に、myemployee でこの grant select, update (empid, fullname) to updateruser where empid>105; を試しました。