问题的起因是由于需要union all两个查询结果,字段一致但是字段类型不同。
出现这种错误,要先看一下是不是sql中有用到连接:union,union 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格式,一个是字符串格式,总之可能不是相同格式。一定要注意。
把varchar转换成number to_number(参数)
相反则用 to_char(参数)