PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

(Jeden stół) weź wiersze bez połączenia

Czy tego chcesz?

select e.*
from egr e
where not exists (select 1
                  from egr e2
                  where e2.groupid = e.groupid and e2.offid <> e.offid 
                 );

Lub jeśli chcesz ograniczyć się tylko do tych dwóch ofert:

select e.*
from egr e
where e.offid in (1, 2) and
      not exists (select 1
                  from egr e2
                  where e2.groupid = e.groupid and 
                        e2.offid in (1, 2) and
                        e2.offid <> e.offid 
                 );


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. docker-compose restart postgres po uruchomieniu skryptów w docker-entrypoint-initdb.d

  2. Postgres Następny/poprzedni wiersz Zapytanie SQL

  3. Jak mogę przechowywać kod HTML w polu tabeli Postgresql DB?

  4. Jak stworzyć klucz podstawowy składający się z dwóch pól w Django?

  5. Proaktywne monitorowanie PostgreSQL (program Developer Studio/Advisors)