Classification:
Oracle(67)
This is an Oracle column conversion function: listag()
Oracle after version 11.2 can be used, but the previous version cannot be used, and an error will be reported.
First look at the sample code:
- with temp as(
- select 'China' nation ,'Guangzhou' city from dual union all
- select 'China' nation ,'Shanghai' city from dual union all
- select 'China' nation ,'Beijing' city from dual union all
- select 'USA' nation ,'New York' city from dual union all
- select 'USA' nation ,'Bostom' city from dual union all
- select 'Japan' nation ,'Tokyo' city from dual
- )
- select nation,listagg(city,',') within GROUP (order by city)
- from temp
- group by nation
This is the most basic usage:
LISTAGG(XXX,XXX) WITHIN GROUP( ORDER BY XXX)
The usage is like an aggregate function. Through the Group by statement, one field of each Group is spliced.
Very convenient.
It is also an aggregate function, with an advanced usage:
over(partition by XXX)
In other words, when you are not using the Group by statement, you can also use the listag function:
- with temp as(
- select 500 population, 'China' nation ,'Guangzhou' city from dual union all
- select 1500 population, 'China' nation ,'Shanghai' city from dual union all
- select 500 population, 'China' nation ,'Beijing' city from dual union all
- select 1000 population, 'USA' nation ,'New York' city from dual union all
- select 500 population, 'USA' nation ,'Bostom' city from dual union all
- select 500 population, 'Japan' nation ,'Tokyo' city from dual
- )
- select population,
- nation,
- city,
- listagg(city,',') within GROUP (order by city) over (partition by nation) rank
- from temp