sql 多表聯集查詢

來源:互聯網
上載者:User
關鍵字 網路程式設計 資料庫綜合

關於sql 多表聯集查詢方法很多,我們今天就來講一下關于sql多表查詢的用法與實例代碼,一般會用到select  * from (select ) union 來操作。

select 類型,sum(合計金額) from


(select 商品名稱,數量,日期,類型,合計金額 from 出庫表


where 日期 > '2010-5-5 00:00:00'


union


select 商品名稱,數量,日期,類型,合計金額 from 入庫表


where 日期 > '2010-5-5 00:00:00'


union


select 商品名稱,數量,日期,類型,合計金額 from 銷售表


where 日期 > '2010-5-5 00:00:00')


group by 類型


下面來看看實例

三個表

收費表

id  flowid totall
1    k1    3000

詳細表
id flowid  pid num
1    k1    1  2000
2    k1    2  1000

付款條件表
id pname
1  現金
2  支票
3  刷卡

create table pay(id int,flowid Varchar(10),totall int)
insert into pay select 1,'k1',3000

create table detail(id int,flowid Varchar(10),pid int,num int)
insert into detail select 1,'k1',1,2000
insert into detail select 2,'k1',2,1000

create table mode(id int,pname Varchar(10))
insert into mode select 1,'現金'
insert into mode select 2,'支票'
insert into mode select 3,'刷卡'

declare @sql Varchar(8000)
set @sql=''

select @sql=@sql+',['+pname+']=sum(case b.pid when '+rtrim(id)+' then num else 0 end)'
from mode

set @sql='select a.id,a.flowid,a.totall'+@sql+' from pay a,detail b where a.flowid=b.flowid group by a.id,a.flowid,a.tota ll'
exec(@sql)


結果:

id  flowid totall 現金  支票  刷卡
1    k1    3000  2000  1000 0

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.