1樓:匿名使用者
不知bai道你具體什麼資料庫,du且表zhi述不清楚,大dao概寫下,,,
sqlserver可以
select (a.names+ b.names) as typfrom table1 as a ,table2 as bwhere a.關聯專
欄位屬=b.關聯欄位
2樓:
select * from (
select names from table1union all
select names from table2)a這樣就是得到2個表的資料在同一列出現
3樓:匿名使用者
建議直接用union all程式:
select names as typ
from table1
union all
select names
from table2
4樓:大道無
你給個條件好讓兩條合併成一條啊。如
select a.names, b.names as typ from table1 as a ,table2 as b where a.id=b.id
在access資料庫中怎樣用sql語句把表的某些字
對兩個表的欄位有要求,不一樣要兩個表的欄位一樣或者說欄位順序一樣,只需要將查詢出來並結果整理的資料表與目標資料表的欄位數目以及順序一直就可以了,通過sql語句把一個表的bai某du 些欄位的某些記錄插zhi入到另一個表中,可參照下面dao的例子 insert into 表內1 欄位 容1,欄位2,欄...
菜鳥求救SQL語句!兩個表聯合統計急!急!急!急!急!急!急!急!急
1 得到每個表a的收入金額 記錄數 select 姓名,sum 收入金額 count 收入金額 from 表a group by 姓名 2 得到每個表b的消費金額 記錄數 select 姓名,sum 收入金額 count 收入金額 from 表b group by 姓名 其結果應該如下 姓名 表a收...
刪除資料庫的sql語句如何寫,怎樣用sql語句刪除整個表及資料庫?
1 drop database 資料庫名 刪除資料庫的。2 drop table 表名 刪除表的。3 delete from 表名 where條件 刪除資料的。4 truncate table 表名 也是刪除資料庫的。1 sql即結構化查詢語言 structured query language 是...