请问大家,数据集有条件判断如何写:
【select * from table 】 为统一的语句,当参数len($id)>0时 where条件为**;else where条件为**
select * from table
if len($id)>0
where id =1
else
where id =2
在select * from table 后边加上(${if(len(id)>0," where **"," where **")})第一个where填写if成立时的条件,第二个填写不成立的条件
select * from table where
${if( len(id)>0,"id =1", " id =2")}