SQL 根据参数面板的下拉框取数,如果不选则 条件为1=1,如果选了则条件为 参数=
${参数}' 或者为 1=1 and 参数=${参数}'
帮助文档现成的https://help.fanruan.com/finereport/doc-view-2394.html?source=4#
SELECT * FROM 你的表 WHERE 1=1 and ${IF(LEN(参数)=0,"1=1","参数="+参数+"")}