oracle分組後合併其中乙個字段 (2)

2022-08-28 12:15:08 字數 1053 閱讀 7802

1、

select wmsys.wm_concat(t.org) orgs, t.area_name

from (select concat(concat(b.abbreviation, '-'), b.org_name) org,

a.area_name area_name

from t_organization  b

left join t_area_store a

on a.store_code = b.unit_id

where b.close_date is null

and b.abbreviation is not null

order by a.area_name) t

group by t.area_name

該語句獲取的結果為:orgs 字段型別為clob型別,若果前段需要展示時得再次處理

結果為:orgs欄位為字串型別,前端頁面展示無需再次處理

SQL 分組後獲取其中乙個字段最大值的整條記錄

有id,name,createdate的一張表testtable 根據name分組,獲取每組中createdate最大的那條記錄 整條 查詢出來 建立一張表,語句如下 sql view plain copy create table dbo testtable id int not null ide...

TableViewCell選中乙個後另外的取消選擇

void tableview uitableview tableview didselectrowatindexpath nsindexpath indexpath void tableview uitableview tableview diddeselectrowatindexpath nsin...

多表關聯刪除和修改其中乙個表

update from 語法是早就知道的,今天把delete琢磨出來了 記錄以備忘 delete a from t sms send a,t sms diaocha send b where b.dcid 10 and a.dxnrid b.dxnrid and a.fssj b.fssj upda...