输入banner图图片脚本导航/分类

Oracle报错:ORA-01747: user.table.column, table.column 或列说明无效

如果列很多,又不好确定是哪个列名使用了关键字,以下建议可供参考:

我用以下方法定位

select *

from v$reserved_words 
where keyword

in(

select COLUMN_NAME

from all_tab_columns

where table_name = ‘表名大写‘ and owner=‘用户名大写‘

);



来自为知笔记(Wiz)



Oracle报错:ORA-01747: user.table.column, table.column 或列说明无效

标签:www   rds   方法定位   rom   oracle   http   建议   text   检查