0
I have a DRIVER table (columns: name, cnh, address, dots_wallet) and a GRANT analyst. The analyst can only access data from drivers who have more than 0 points in the wallet.
Grant select on conductor to analyst with GRANT OPTION;
how do I fit a WHERE enclosure or other thing that solves my problem?
And create a
view
and permission for theview
, resolves?– David
I can try... but I was wondering if you could direct me?
– Danilo Silva
I believe not, but will ...
– David
would be the same as setting permissions for records, I think it is not possible. The best would be the same view
– Rovann Linhalis
Postgres or Mysql? No postgres tem o
row level security
(https://www.postgresql.org/docs/9.5/static/ddl-rowsecurity.html), might help you– Camilo Santos