在pg库中null和空字符串并不是一个概念,
select * from ywks.yi_ge_biao
where up_date=coalesce('${dateEditor0_c}',(select max(up_date) from ywks.yi_ge_biao))
${if(len(i_local_c) == 0,"","and CITY = '" + i_local_c + "'")}
--'${dateEditor0_c}' 是从控件传入的一个时间参数
--代码是想要实现如果控件传入的参数为空,那么输出最新日期的数据记录
代码运行之后发现没有报错,但是查询不到记录。
最后查询资料发现,pg数据库中的null和空字符串并不是相同的表示方法,因为'${dateEditor0_c}'传进来的参数初始设定为字符串,虽然没有填写任何输入值,但是并不是null
于是对代码进行修改
select * from ywks.yi_ge_biao
where up_date=(
case when '${dateEditor0_c}'='' then (select MAX(up_date) FROM ywks.yi_ge_biao)
else '${dateEditor0_c}'||' 00:00:00.0' end)
${if(len(i_local_c) == 0,"","and CITY = '" + i_local_c + "'")}
就可以正常查询出数据了