Column-Level Security
Synopsis
GRANT SELECT (<column1>,<column2>,...<columnN>) ON TABLE <table> TO <entity>;
REVOKE SELECT (<column1>,<column2>,...<columnN>) ON TABLE <table> FROM <entity>;Examples
CREATE USER test_user (PASSWORD='test');
CREATE TABLE employees (id INT, salary BIGINT);Last updated
Was this helpful?

