oracle 建视图引用其他用户的表授权eg:
grant select on tuser to USR_JSSSFJGGDZYXX_BX with grant option;
要加上 with grant option选项。
a用户登录grant select on a to b with grant option;
然后 b用户登录grant select on v_b to c;
c用户就可以访问v_b了。
增加更新权限grant update on tuser to usr_bx with grant option;