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

Dołączanie do tabeli klientów i tagów

używając exists() aby uzyskać wszystkich klientów i tagi, gdy klient ma tag o indeksie 1:

select ct.customernumber, ct.tagindex, c.date
from customers c
  inner join customers_tags ct
    on c.customernumber = ct.customernumber
where exists (
  select 1
  from customers_tags i
  where i.customernumber = ct.customernumber
    and i.tagindex = 1
  )

lub używając in() :

select ct.customernumber, ct.tagindex, c.date
from customers c
  inner join customers_tags ct
    on c.customernumber = ct.customernumber
where c.customernumber in  (
  select i.customernumber
  from customers_tags i
  where i.tagindex = 1
  )



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Błąd serwera SQL 113:Brak znaku komentarza końcowego „*/”

  2. Wykonaj polecenie Wstaw i zwróć wstawiony identyfikator w Sql

  3. Problemy z wydajnością parametru wartości tabeli

  4. Nie można uzyskać dostępu do tabel tymczasowych z poziomu funkcji

  5. Automatyczne usuwanie daty/godziny rekordu MSSQL