Oracle
 sql >> Teknologi Basis Data >  >> RDS >> Oracle

Bagaimana saya menghapus duplikat dari listagg

Pertama pilih nilai DISTINCT yang Anda butuhkan, lalu terapkan LISTAGG ke nilai tersebut. Berikut ini contoh berdasarkan skema Scott.

SQL> -- Duplicate jobs within the department
SQL> select deptno, listagg(job, ', ') within group (order by job) jobs
  2  from emp
  3  group by deptno;

    DEPTNO JOBS
---------- ------------------------------------------------------------
        10 CLERK, MANAGER, PRESIDENT
        20 ANALYST, ANALYST, CLERK, CLERK, MANAGER
        30 CLERK, MANAGER, SALESMAN, SALESMAN, SALESMAN, SALESMAN

SQL>
SQL> -- This won't work - DISTINCT can't be used in LISTAGG
SQL> select deptno, listagg(distinct job, ', ') within group (order by job) jobs
  2  from emp
  3  group by deptno;
select deptno, listagg(distinct job, ', ') within group (order by job) jobs
               *
ERROR at line 1:
ORA-30482: DISTINCT option not allowed for this function


SQL>
SQL> -- So - select distinct jobs first, then apply LISTAGG to it
SQL> select x.deptno, listagg(x.job, ', ') within group (order by x.job) jobs
  2  from (select distinct deptno, job
  3        from emp) x
  4  group by x.deptno;

    DEPTNO JOBS
---------- ------------------------------------------------------------
        10 CLERK, MANAGER, PRESIDENT
        20 ANALYST, CLERK, MANAGER
        30 CLERK, MANAGER, SALESMAN

SQL>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Dapatkan RowId dari QueryChangeDescription

  2. Bagaimana cara saya mendapatkan hibernasi untuk menghasilkan sintaks FOR UPDATE WAIT 10 Oracle

  3. Memperkirakan waktu pembuatan indeks di Oracle

  4. Masukkan tanggal UTC/GMT di database Oracle dengan Java dan Spring

  5. Bagaimana cara terhubung ke Oracle di go