1樓:四舍**入
1、第一種,用一張臨時表,把所有資料都放在一張表裡insert into qunlist select * from qunlist89,90,91,92;
再在qunlist中查詢
2、第二種,用 union all方式查詢select * from qunlist89union all
select * from qunlist90;
2樓:
第一種 用一張臨時表,吧所有資料都放在一張表裡insert into qunlist select * from qunlist89,90,91,92;
再在qunlist中查詢
第二種用 union all方式查詢
select * from qunlist89union all
select * from qunlist90;
3樓:匿名使用者
select * from qunlist89union all
select * from qunlist90最簡單的方法~
sql查詢出兩個資料表,再通過這兩個表的相同欄位合併成一個資料表,急急急 10
4樓:匿名使用者
你試一下,不知對不對 呵呵
seletct 物料**,期初資料,總入庫數量,總出版庫權數量,(期初資料+總入庫數量-總出庫數量) as 結存資料 from
(select * from a full join b on a.物料**=b.物料**) c
5樓:匿名使用者
select
isnull(a.物料
**抄,b.物料**)as 物料**,
a.期初數襲據bai,b.總入庫數量
du,b.總出庫數量,
isnull(a.期初資料,0)+isnull(b.總入庫數量,0)-isnull(b.總出庫數量,0) as 結存zhi資料
from a
full join b on a.物料dao**=b.物料**
6樓:丶我叫李小帥
你不輸出那個列就行了
7樓:
分開兩段sql寫,然後再union起來
如何用sql 語句將兩個資料表相同欄位合併成另外一個表
8樓:匿名使用者
select a,b,c from tb1
union (all)
9樓:匿名使用者
select * into tb3 from (select a,b,c,d,e from tb1union all select a,b,c,d,e from tb2 ) tbx
10樓:匿名使用者
create table x as (select a.field,b.field from a,b where a.id = b.id)
11樓:孝悅位溪兒
select
a,b,c
from
aunion
allselect
a,b,c
from
b以上,希望對你有所幫助!
SQL兩張表合併,任意兩張表,無關聯,只要求合併即可,謝謝
在t表中插入t1表在查詢分析器上寫個簡單的sql語句大概這樣 insert into t values select from t1 把t1表中的逐條資訊插入到表t中,用 create table c as select from a union all select from b 但是這個應該是沒...
關於linq查詢兩張表,返回合併後的兩張表語句咋寫
來,試試下面 列名稱不固定,通用方法 using system using system.collections.generic using system.data using system.linq using system.text namespace test dt1.rows.add new...
求解SQL資料庫兩張表資料的排序問題
select dept id as id,dept name as name from d dept union all select unit id as id,unit name as name from d unit order by id asc 因為兩個表的id都是字元型別的,所以排序都是...