标签:col 数据 必须 有用 名称 ora 语句 sele 连接
一、网上都是这么说的:
出现这种错误,要先看一下是不是sql中有用到连接:union,unio all之类的,如果有,需要注意相同名称字段的数据类型一定要相同。
select a.time from A a union all select b.time from B b where a.name = b.name;
例如上现那句sql,要注意A和B中的time字段可能一个是date格式,一个是字符串格式,总之可能不是相同格式。一定要注意。
二、但是我还要补充一句
我写了两个sql,使用union all连接。
select a.name a.age from studentTabA a union all select b.name b.age from studentTabB b
上述的语句是不会报错的,但是如果像下面这样写也还是会报ORA-01790
select a.age a.name from studentTabA a union all select b.name b.age from studentTabB b
ORA-01790: 表达式必须具有与对应表达式相同的数据类型
标签:col 数据 必须 有用 名称 ora 语句 sele 连接
原文地址:https://www.cnblogs.com/ping-pong/p/10319258.html