作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个报告,但是我对您来说可能很简单,但是我想不出任何可以让我解决问题的方法。
我已经基于SQL查询(具有多个CTE)创建了一个报告,该报告应通过以下方式参数化:
where
deliverydate between @FromDate and @ToDate
and
carrierid = @Carrier
SELECT SALESID ,
CARRIERID ,
dlvmodeid ,
SUM(totalweight) AS totalweight ,
SUM(totalcharges) AS totalcharges ,
TOTALCHARGESCURRENCY ,
SUM(HowManyPackagesForThisSO) AS HowManyPackagesForThisSO ,
SUM(HowManyPackagesForThisSO_st) AS HowManyPackagesForThisSO_st ,
SUM(InHowManyDays) AS InHowManyDays ,
SUM(cspjnumber) AS HowManyPackingSlip
FROM countingcte
WHERE deliverydate BETWEEN @FromDate AND @ToDate
AND carrierid = @Carrier
GROUP BY SALESID ,
CARRIERID ,
dlvmodeid ,
TOTALCHARGESCURRENCY
最佳答案
将此添加到您的WHERE
子句中:
AND ((@Param = 1) OR
(@Param = 2 AND col1 <> col2) OR
(@Param = 3 AND col1 = col2))
关于sql - 根据参数的条件WHERE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40764840/
我是一名优秀的程序员,十分优秀!