Biblioteca 是 Oracle 21c 上的用户。我从数据库收到此错误: ORA-00904: “所有者”: 无效标识符
我尝试:从 user_tables 中选择 table_name,其中所有者='biblioteca'。
我希望我与 biblioteca 用户创建的表格。
user_tables
没有 owner
列。使用 all_tables
代替 user_tables
正确的查询是:
select table_name from all_tables where owner= 'biblioteca'