flask-sqlalchemy, sql count records in a relationship and then join to a users table

475 Views Asked by At

Im querying my users this way with sql:

select * 
from users

i get all the users but now i want to query how many friends they have so if i do this

i do this:

select count(*) 
from users inner join friendship on users.id = friendship.user

and i get exactly how many friends they have but now i want to add this record to the users table in order to order them by this number

is there a way to achieve this with sqlalchemy?

1

There are 1 best solutions below

1
On BEST ANSWER
select users.*, count(*) over (partition by friendship.user) 
from users inner join friendship on users.id = friendship.user
order by count