请教一个ASP+SQL的问题,如何将1和2两个查询语句合并?还有数据集结果的相减?
1、selectinSupplier,sum(inTotalmoney)asbfrominvoiceInfowheremonth(inDuedate)='"&monthn...
1、select inSupplier,sum(inTotalmoney) as b from invoiceInfo where month(inDuedate)='"&monthnow&"'
2、select inSupplier,sum(inPaymoney) as c from invoiceInfo where month(inPaydate)='"monthnow"'
然后后面数据集显示出来
<%=rs("inSupplier")%> <%= rs("b")%> <%= rs("c")%> <%=rs("b")-rs("c")%>不知道这个相减会不会有问题? 展开
2、select inSupplier,sum(inPaymoney) as c from invoiceInfo where month(inPaydate)='"monthnow"'
然后后面数据集显示出来
<%=rs("inSupplier")%> <%= rs("b")%> <%= rs("c")%> <%=rs("b")-rs("c")%>不知道这个相减会不会有问题? 展开
展开全部
select inSupplier,sum(inTotalmoney) as b, sum(inPaymoney) as c from invoiceInfo where month(inDuedate)='"&monthnow&"'
这样不就得了?
这样不就得了?
更多追问追答
追问
inTotalmoney对应的日期是inDuedate
inPaymoney对应的日期是inPaydate
按照你说的,两个金额都按照inDuedate取值了。
追答
哦 这我到没注意
那就这样
select inSupplier,sum(inTotalmoney) as b, sum(inPaymoney) as c from invoiceInfo where month(inDuedate)='"&monthnow&"' or month(inPaydate)='"monthnow"'
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询