Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

Potrzebny dynamiczny przestawny z Row_Number()

z użyciem cte , z row_number możesz osiągnąć wynik:

Twój schemat:

create table your_table([Client ID] int ,Value varchar(50));
insert into your_table values
(12345,            'Did Not Meet'),
(12345,            'Did Not Meet'),
(12345,            'Partially Met'),
(12346,            'Partially Met'),
(12346,            'Partially Met'),
(12346,            'Partially Met'),
(12347,            'Partially Met'),
(12347,            'Partially Met'),
(12347,            'Did Not Meet'),
(12347,            'Met');

Zapytanie:

with cte as
(
 select [Client ID] ci,value,
        row_number() over(partition by [Client ID] order by value) as rn
 from your_table
)
select distinct ci as [Client ID],
       (select ct.value from cte ct where ct.ci=cte.ci and ct.rn=1) value1,
       (select ct.value from cte ct where ct.ci=cte.ci and ct.rn=2) value2,
       (select ct.value from cte ct where ct.ci=cte.ci and ct.rn=3) value3,
       (select ct.value from cte ct where ct.ci=cte.ci and ct.rn=4) value4
from cte

Wynik:

Client ID   value1          value2          value3          value4
12345       Did Not Meet    Did Not Meet    Partially Met   (null)
12346       Partially Met   Partially Met   Partially Met   (null)
12347       Did Not Meet    Met Partially   Met Partially    Met



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Używanie IF EXISTS z CTE

  2. Jak zmienić nazwę ograniczenia klucza podstawowego dla wielu tabel w bazie danych SQL Server — część samouczka SQL Server / TSQL 64

  3. Inżynieria odwrotna do tworzenia diagramów baz danych w programie Visio z SQL Server 2008

  4. Jak sparametryzować ciąg połączenia z bazą danych w pakiecie SSIS?

  5. połącz dwie kolumny bazy danych w jedną kolumnę wyników;