Postgres增加用户仅能查询视图
1.Local database增加视图cli_no
create view cli_no as select id_stocpf,et_refcmp,stocpf_no_cli,datemodif,heuremodif from t_stocpf;
2.创建新用户
create user nha_label with password 'Printing';
3.只授权用户新视图的查询权限
grant select on TABLE public.cli_no to nha_label。
测试:
在SQL语句中,遇到错误,输入: Rollback 执行回滚