标签:www rds 方法定位 rom oracle http 建议 text 检查
1、检查sql书写正确性
如果列很多,又不好确定是哪个列名使用了关键字,以下建议可供参考:
我用以下方法定位
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 检查
原文地址:http://www.cnblogs.com/samwang88/p/977e2ef0a0891dd0a2bf871645ed3372.html