I have a table named products in my postgresql 9.5 database. And this table fields are like this:
- id
- name
- sales_area
And data is like this:
id name sales_area
1 prod1 A1
2 prod2 A1
3 prod3 A2
4 prod4 A3
And I want to create a database user named user1, and this user should select, update and delete only A1 sales_area datas. Other database user will select, update and delete all datas.
Is this rule possible using policy? And How?