帆软-几类查询方法

帆软-几类查询方法

#单值筛选
where type = ‘${p_type}’

---------------------------------------------

#多值筛选-一般
where type in (’${p_type}’)

---------------------------------------------

#多值筛选-默认选择全部
方式一:
where if(length(concat(’ p t y p e ′ ) ) = 0 , 1 = 1 , t y p e i n ( ′ {p_type}')) = 0, 1=1, type in (' ptype))=0,1=1,typein({p_type}’))

#方式二:
where ${if(len(p_type) == 0,"",“type in (’” + area + “’)”)}

---------------------------------------------

#模糊筛选
where type like ‘%${p_type}%’

你可能感兴趣的:(报表)