I would like restrict access to sensitive or restricted information for some users (eg. hide data of one or more
clientsfor some database users).
PostgreSQL allows to create security policy as Row-Level Security, policies based on the querying user.
Are there any other alternatives to RLS, are there any better solutions??
What are the advantages and disadvantages of RLS?
How much RLS will cause a decrease in database performance?
JK