nested exception is org.postgresql.util.PSQLException: ERROR: function to

nested exception is org.postgresql.util.PSQLException: ERROR: function to,第1张

postgresql数据库,执行时候报错。

nested exception is org.postgresql.util.PSQLException: ERROR: function to_char(unknown, unknown) is not unique
  建议:Could not choose a best candidate function. You might need to add explicit type casts.

原sql语句

select
    to_char(flight_date, 'yyyy-mm-dd') as flight_date,
    fdmrecid,
    airlineid,
    flightno,
    main_sta,
    voyage
from
    cfps_flt_fdm
where
    to_char(flight_date, 'yyyy-mm-dd')= to_char(#{parameter,jdbcType=TIMESTAMP}, 'yyyy-mm-dd')
    and delflag = 'N'

问题出现的原因,

to_char函数可以用在字段上,但是不可以用在入参中。此处为#{parameter}。

修改后,错误消失。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/991651.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存