I want to add grant with where clause, not for columns, for different users. I'm using this grant update (ename), insert (empno, ename) on emp to xyz; for catching columns but I can't do this for rows.
Is there any method ?
I want to add grant with where clause, not for columns, for different users. I'm using this grant update (ename), insert (empno, ename) on emp to xyz; for catching columns but I can't do this for rows.
Is there any method ?
Just follow this guide : https://www.postgresql.org/docs/9.5/static/ddl-rowsecurity.html It's pretty straight forward and well documented.