集合操作 並

2021-06-05 01:12:06 字數 631 閱讀 1729

首先再建立一張表(演員表,只是為了測試兩張表查詢,跟資料庫的設計沒有關係)

create table yanyuan    --建立張演員表

yid  int ,            --演員的id

sa   money          --演員的出場費

insert into yanyuan values(1005,500.0)

insert into yanyuan values(1008,500.0)

insert into yanyuan values(1009,500.0)

insert into yanyuan values(1106,500.0)

insert into yanyuan values(1009,500.0)

insert into yanyuan values(3336,500.0)

insert into yanyuan values(4446,500.0)

現在我們要把員工和演員的id號全查出來

select id from employee

union

select yid from yanyuan

查詢結果如下:

兩個表的id就全部查出來了。重複的去掉,沒有的加在後面

集合的並交差

include using namespace std include typedef struct lnode 定義結構體型別指標 linklist void in put linklist l 定義輸入集合函式 void out put linklist l 定義輸出集合函式 cout n vo...

並查集合集

題目1 include include include include include includeusing namespace std const int maxn 1e6 10 int pre maxn maxx maxn num maxn int findfather int x whil...

計算集合的並

題目 問題描述 給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與 之間可能存在相同元素。輸入格式 輸入資料分為三行,第一行有兩個數字 n,m 0 include include using namespace std intmain bool flag false for set i...