通过角色赋予我的表权限的 SQL 查询?
我需要构建一个查询来返回我有权访问的表,因为通过数据字典的角色赋予了我权限。
I need to build a query that returns the tables I have access to because of rights given to me through a role with the data dictionary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在标准 SQL 中,这是对 INFORMATION_SCHEMA.ROLE_TABLE_GRANTS 视图的简单查询。
某些数据库系统不支持此视图,但具有包含角色和授予的权限的替代视图。在开源数据库中,HSQLDB支持大量的INFORMATION_SCHEMA视图,包括上述这些。
In standard SQL this is a simple query on the INFORMATION_SCHEMA.ROLE_TABLE_GRANTS view.
Some database systems do not support this view, but have alternative views containing the roles and the granted privileges. Among open source databases, HSQLDB supports a large number of INFORMATION_SCHEMA views, including the above.