|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
现在在后台Sql中可以实现同期值,但是如果后台Sql中写死,那么在RS中就无法去根据报表的日期提示将参数传递给Sql中了。
想问下在什么位置能够写带参数的Sql,并且可以写Group by。或者大家有什么更好的建议,毕竟我只是刚接触,可能思路上有很多问题。
Sql如下:
select entval,
xzqhval,
count(case
when t.estdate >= ?clrq1? and
t.estdate <= ?clrq2? then
pripid
else
null
end) as benqi,
count(case
when t.estdate >= add_months(?clrq1?, -12) and
t.estdate <= add_months(?clrq2?, -12) then
pripid
else
null
end) as tongqi
from sczt_djqk_zc_rq t
group by entval, xzqhval
order by entval, xzqhval
其中? ?中代表我希望填入参数的位置
该贴已经同步到 xiaoerp的微博 |
|