PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

SQL:Wie speichere ich die Reihenfolge in einer SQL-Abfrage?

Statt subquery Verwenden Sie join . Probieren Sie es aus.

SELECT p.*
FROM   person p
       JOIN (SELECT p.id,
                    Count(p.NAME)cnt
             FROM   car c
                    JOIN person p
                      ON c.person_id = p.id
             GROUP  BY p.id) b
         ON p.id = b.id
ORDER  BY cnt ASC