Nemo_Wx(提问者)有的表是每个月一张,所以造成sql语句不是静态的。
如table201901 ,table201902,table201903
如果我想查20190101的,就查select * from table201901 。
而如果是范围查20190101-20190303,
就需要select * from table201901
union select * from table201902
union select * from table201903。
这样就是动态的sql,我需要按我的规则,根据输入的参数,生成相应的sql才行。