I am trying to grant an user privilege to update on specific columns using the where clause. Based on what I have learnt, in order to update using where once must have SELECT privileges. This is what I have and I know the syntax is wrong so could you please tell me the correct syntax or where to find it?
grant select, update on
fullname, address where empid>5 to updateruser;
then I tried this grant select, update (empid, fullname) on myemployee to updateruser where empid>105;