SQL指南 集合

2021-09-25 08:06:29 字數 1611 閱讀 5157

mysql> select 'ind' type_cd,cust_id,lname name

-> from  individual

-> union all

-> select 'bus' type_cd,cust_id,name

-> from business;

+---------+---------+------------------------+

| type_cd | cust_id | name                   |

+---------+---------+------------------------+

| ind     |       1 | hadley                 |

| ind     |       2 | tingley                |

| ind     |       3 | tucker                 |

| ind     |       4 | hayward                |

| ind     |       5 | frasier                |

| ind     |       6 | spencer                |

| ind     |       7 | young                  |

| ind     |       8 | blake                  |

| ind     |       9 | farley                 |

| bus     |      10 | chilton engineering    |

| bus     |      11 | northeast cooling inc. |

| bus     |      12 | superior auto body     |

| bus     |      13 | aaa insurance inc.     |

2. mysql> select emp_id

-> from employee

-> where assigned_branch_id=2

-> and (titile='teller' or title='head teller')

-> union 

-> select distinct open_emp_id

-> from account

-> where open_bran_id=2;

這個是和集合,union 是排序且排重的。

2.except 在集合a中的除去素有的的zhzh

功夫資料,而exception all 則根據重負資料在b**現的次數進行刪除。

1.lmnop qrst

2.lmnoppqrst

3.p4.lmno ,去除b中的元素。

編寫乙個符合插敘,查詢所有各人的客戶以及雇員的姓氏和名字。

select   fname,lname

from invividual

unoion 

select fname,name

from emp

集合面試指南

hashmap中的key可以是任何物件或資料型別嗎 hashtable是執行緒安全的麼 concurrenthashmap 執行緒安全嗎,concurrenthashmap如何保證 執行緒安全?假設我們現在 hashtable 的容量為 5,已經存在了 5,5 13,13 16,16 17,17 2...

SQL語句集合

記錄下平時寫的稍微複雜點的sql 說明 a b是一對多關係 乙個a有多個b 查詢a中已有b的且狀態不是11020403的a資料 select from a where id not in select id from b where cp status 11020403 group by id an...

sql語句集合

新增注釋 給資料庫表新增注釋 comment on table 表名 is 注釋 給表字段新增注釋 comment on column 表名.欄位名 is 注釋 修改表結構 增加字段 alter table 使用者名稱 如果需要 表名 add 欄位名 資料型別 修改字段型別 alter table ...