在oracle資料庫中,有兩個表裡的某些欄位是一樣的,怎麼樣找出這些相同的字段

時間 2021-10-14 22:24:01

1樓:康熙轉世

假如表是t1,t2

select a.column_name from(select column_name from user_tab_columns where table_name='t1')a,

(select column_name from user_tab_columns where table_name='t2') b

where a.column_name=b.column_name

2樓:永恆谷愛戀

select /*+parallel(t,4)*/t.column_name

from (select *

from user_tab_columns twhere t.table_name = '表1') t,(select *

from user_tab_columns twhere t.table_name = '表2') dwhere t.column_name = d.column_name

只要你把自己的表拉進去就可以了 通用···

3樓:

select column_name from user_tab_columns where table_name='mv1' and column_name in (select column_name from user_tab_columns where table_name='mv2')

其中mv1和mv2 是你的2個表

oracle資料庫中 想把兩個表的兩個欄位中內容相同的資料查詢出來 怎麼做呀?**等 謝謝。

4樓:朴小美付小美

select * from a,b where a.name1=b.name2;

name1是a表裡的字段。

name2是b表裡的字段。

這個查出來就是相同的資料就能查詢出來了。

5樓:匿名使用者

假設表1的名字是a,表2的名字是b

select a.*,b.* from a,b

where a.wzdm =b.wzdm and a.xqdm=b. xqdm

6樓:匿名使用者

select a.*,b.* from a ,b

where a.欄位1=b.欄位1

7樓:西普士

select * from table1,table2 where table1.name=table2.name

sql語句如何查詢乙個表中某兩個欄位的相同資料?

8樓:

除重select distinct a.id as aid,a.name as aname,b.

id as bid,b.name as bname from a inner join b on(a.name=b.

name and a.id=b.id)

不除重select a.id as aid,a.name as aname,b.

id as bid,b.name as bname from a inner join b on(a.name=b.

name and a.id=b.id)

9樓:匿名使用者

select * from a

inner join b on a.name = b.name and a.id = b.id

where a.name = '張三' and a.id = '008'

內連線即可

10樓:輕癮

select name,id,count(*) from a group by name,id

11樓:青龍襲天

select * from a where a.name=b.name and a.id=b.id

應該是這個了吧

sql語句 兩個不同的資料表具有相同的字段,怎麼把兩個表的字段同時查詢出來

12樓:喔喔寶寶

是要同時查出兩個表所有的記錄,還是這個字段相同的記錄?

1.同時查出兩個表所有的記錄:

select 字段

from table1

union

select 字段

from table2

2.這個字段相同的記錄

select *

from table1,table2

where table1.欄位 = table2.欄位

13樓:匿名使用者

以相同字段作為連線條件查詢不會麼

請問oracle資料庫中兩張表分別在兩個資料庫中怎麼

無法進行關聯,oracle不能跨資料庫操作,只可以跨使用者操作。sql select a.name b.id from user1.table1 a,user2.table2 b where a.id b.id 解釋 當前登入的使用者必須有訪問user1表table1許可權和user2使用者的tab...

oracle怎樣檢視資料庫中有資料的表

千鋒教育 select from all tables all tables是所有能訪問,包括其它使用者的,如果要檢視當前使用者用user tables 超級喵公主 覺得你應該先弄清楚oracle的常規資料字典的結構,像9i裡的常規資料字典中物件名稱就有以user,all,dba為字首的物件。以us...

怎麼設定兩個主鍵在access資料庫表中

建立複合主鍵 可以指定多個欄位的組合用作表的主鍵,但是現在很 少這樣做。這種主鍵通常稱為複合主鍵。如圖2 23 所示,選擇要在複合主鍵中包括的多個欄位,然後單擊 工具 功能區選項卡中的鑰匙圖示。當然,如果在表設計中這些 欄位排列在一起會更有助於快速操作。開發人員強烈感覺到主鍵應該由資料庫中原本出現的...