标签: sql oracle role grant
我需要授予角色CREATE SESSION SELECT(来自HR用户EMPLOYEES表的数据)权限。我可以单独授予这些权限,但有没有办法在一行中授予这些权限?
grant select on hr.employees to role; grant create session to role;