时间:2021-07-01 10:21:17 帮助过:25人阅读
如果列很多,又不好确定是哪个列名使用了关键字,以下建议可供参考:
我用以下方法定位
select *
from v$reserved_words
where keyword
in(
select COLUMN_NAME
from all_tab_columns
where table_name = ‘表名大写‘ and owner=‘用户名大写‘
);
Oracle报错:ORA-01747: user.table.column, table.column 或列说明无效
标签:www rds 方法定位 rom oracle http 建议 text 检查