我的 sqlite3 数据库中有 2 个表。有人可以帮助我使用下面的 sql 命令:
tbltrans
:
transid | transdate | discountpercentage | Bank
12345 10/09/2011 5 20.00
tbltrans2
:
transid | itemnr |price | btwpercentage | qty
12345 205 10.11 12 5
12345 302 15.00 6 7
12345 501 20.00 21 3
我的第一个问题是:
我想获得一个查询表,其中包含每个 transid 的总销售额和计算出的现金,例如:
Select Sum(tbltrans2.qty * tbltrans2.price) as TotalAmount, (Totalamount - tbltrans.Bank) as Cash where tbltrans.transid = tbltrans2.transid and transdate = '10/09/12'
有人可以更正这个 SQL 语句吗?
-- 下面这个问题已经解决了 --
那么,任何人都可以更正我的 sql 代码以使用此表布局:
select
sum(price * qty - (price * qty) * (tbltrans.discountpercentage / 100)
from
tbltrans2
where
btwpercentage = 6) as total6 ,
sum(price * qty - (price*qty)*(tbltrans.discountpercentage /100) from tbltrans2 where btwpercentage =12) as total12,
sum(price * qty - (price*qty)*(tbltrans.discountpercentage /100) from tbltrans2 where btwpercentage =21) as total21
where transdate = date('10/09/2011')