Grant alter on only one column in table
问题 I want to grant a user only to edit one column in my table. What command do I use here? I use the oracle 11g database. I alrdy know how I can grant only read or delete on the whole table but how do I do it for only one column or more? pls give an example. 回答1: For example, you want to grant update privilege on ename column only, then give the following statement (where xyz is the username) grant update (ename) on emp to xyz; Syntax: grant update(column-name) on table-name to user-name EDIT: