Answers for "select with count postgre"

SQL
1

order by count postgres

select 
    count(w.id) as mycount,
    w.company_id,
    c.company_name,
    c.city
from 
    companies c 
    left join workers w on 
        c.id=w.company_id 
group by 
    w.company_id,
    c.company_name,
    c.city
order by mycount desc;
Posted by: Guest on April-27-2021
0

postgres count where true

SELECT count(CASE WHEN myCol THEN 1 END) FROM <table name>
Posted by: Guest on October-30-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language