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

Zapytanie SQL z dołączeniem i grupowaniem przez i

to jest przykład, w twoim przypadku musisz pobrać wartość każdej kolumny w podzapytaniu (albo w instrukcji join, albo w głównym przykładzie instrukcji select:

inner join (
        select distinct bartar_patientname
                ,(select top 1 bartar_pastePerMonth from [Bartar_MSCRM].[dbo].[Filteredbartar_callcenterreport] c2 where c2.bartar_patientname = cte.bartar_patientname and c2.bartar_pastePerMonth is not null order by c2.bartar_date desc) as bartar_date
                ,(select top 1 bartar_acc           from [Bartar_MSCRM].[dbo].[Filteredbartar_callcenterreport] c2 where c2.bartar_patientname = cte.bartar_patientname and c2.bartar_acc is not null order by c2.bartar_date desc) as bartar_acc
                ,(select top 1 bartar_insuranceinfo from [Bartar_MSCRM].[dbo].[Filteredbartar_callcenterreport] c2 where c2.bartar_patientname = cte.bartar_patientname and c2.bartar_insuranceinfo is not null order by c2.bartar_date desc) as bartar_insuranceinfo
                ,(select top 1 bartar_brand         from [Bartar_MSCRM].[dbo].[Filteredbartar_callcenterreport] c2 where c2.bartar_patientname = cte.bartar_patientname and c2.bartar_brand is not null order by c2.bartar_date desc) as bartar_brand
        from [Bartar_MSCRM].[dbo].[Filteredbartar_callcenterreport] cte
        ) r

Ponownie, to jest próbka rozwiązania.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Odpowiednik funkcji Sleep() w SQL Server:instrukcja WAITFOR

  2. Podczas przechowywania daty i godziny na serwerze sql (typ datetime), w jakim formacie jest ona przechowywana?

  3. Jak generować dane testowe w SQL Server

  4. Wstaw wyniki procedury składowanej do tabeli tymczasowej

  5. Zgodność z usługami integracji serwerów SQL 2008-2005