sql合並
1. sql怎麼列合並
1、我用Toad做演示,我先新建兩張table,create table #AA(ID int,name nvarchar(10),age int)
create table #BB(ID int,name nvarchar(10),age int )。
2. sql怎麼合並兩條查詢語句
selectt1.count1,t2.count2
from
(selectcount(*)count1fromA)t1,
(selectcount(*)count2fromB)t2
3. sql 表數據合並
我這里創建2個測試表 aa 與 bb, 還特地造了些其他的欄位,用於模擬 樓主的 「有很多欄位」
1> select * from aa;
2> select * from bb;
3> go
a b c
----------- ----------- -----------
1010 5 1
1011 6 2
1012 7 3
(3 行受影響)
a b c d
----------- ----------- ----------- -----------
1011 6 4 7
1012 9 5 8
1013 8 6 9
(3 行受影響)
1> SELECT
2> isnull(aa.a, bb.a) AS a,
3> isnull(aa.b, bb.b) AS b,
4> isnull(aa.c, bb.c) AS 其他數據C,
5> bb.d AS 其他數據D
6> FROM
7> aa full join bb on (aa.a = bb.a AND aa.b = bb.b)
8> go
a b 其他數據C 其他數據D
----------- ----------- ----------- -----------
1010 5 1 NULL
1011 6 2 7
1012 7 3 NULL
1012 9 5 8
1013 8 6 9
(5 行受影響)
4. SQL 合並兩表
兩個表連接查詢然後用distinct去掉重復的即可。
給你點思路,先把兩個表連接結果作為一張表,然後再從這個表中過濾掉重復的。
select
distinct
t3.編號,t3.名稱
from
(
select
t1.編號,t1.名稱
from
t1
join
t2
)
as
t3
5. sql 合並兩個查詢結果
select t1.數字欄位名,t1.abc欄位名+t2.def欄位名
from t1 ,t2
where t1.數字欄位名 = t2.數字欄位名
6. SQL如何合並多個查詢結果
合並結果一般用union或者union all,具體用什麼取決於需求。
如數據如下:
A表:
id name
1 張三
2 李四
3 王五
B表:
id name
1 張三
2 趙六
3 孫七
如果
selectid,namefromA
unionall
selectid,namefromB;
結果:
id name
1 張三
2 李四
3 王五
1 張三
2 趙六
3 孫七
如果:
selectid,namefromA
union
selectid,namefromB;
結果:
id name
1 張三
2 李四
3 王五
2 趙六
3 孫七
也就是說union all在執行後,不會把相同的結果合並,而union會把相同的結果只顯示成一行。
7. 合並sql語句
如果是要將這2句的結果合並到一起,那麼在這2句之間加上union 關鍵字即可。
如果是要將這2句的邏輯意義合成一句,那麼代碼如下:
select uid,friendsuid from friends
where (uid=2 or friendsuid=2)
and uid!=friendsuid
意思為要麼uid=2,要麼friendsuid=2,但兩者不可同時=2
8. sql 快速合並2個表
2個sql:
insertintoA(id,col1,col2)
selectid,col1,col2
fromb
wherenotexists(select1fromAwhereA.id=B.id)
更新(sqlserver)
updateAsetA.col1=B.col1,A.col2=B.col2
fromB
whereA.id=B.id
更新(Oracle)
updateAset(col1,col2)=
(selectcol1,col2fromBwhereA.id=B.id
)
andexists(select1fromAwhereA.id=B.id)
9. SQL怎麼合並表
select * into 新表名 from (select * from T1 union all select * from T2)
這個語句可以實現將合並的數據追加到一個新表中。
不合並重復數據 select * from T1 union all select * from T2
合並重復數據 select * from T1 union select * from T2
兩個表,表1 表2
如果要將 表1的數據並入表2用以下語句即可
insert into 表2(欄位1,欄位2) select 欄位1,欄位2 from b1
注意,必須把欄位名全部寫清楚,而且不允許把自動編號進去寫進去,要合並自動編號欄位必須重寫一個演算法一條一條記錄地加進去
1 insert into b1 select * from b2
2 select * into newtable from (select * from b1 union all select * from b2)
10. SQL怎樣合並兩個表進行查詢
selecttop10*from
(select*from表1
unionall
select*from表2)asT
orderby某欄位
union all就是把倆表連接
然後把他倆連接的結果集起名叫T
然後你就可以用top了
你可以直接運行一下括弧里那句,如果表結構相同你兩個可以用*,如果部分欄位相同,你就要把在一起的欄位寫到一起了,比如
selectid,namefrom表1
unionall
selectid,namefrom表2
類似這樣