I have two tables.
Goods:
Table "public.goods"
Column | Type | Modifiers
-----------------+--------------------------+---------------------------
goods_id | character varying | not null
goods_owner_id | character varying | not null
Sellers:
Table "public.sellers"
Column | Type | Modifiers
-----------------+--------------------------+---------------------------
sellers_id | character varying | not null
sellers_name | character varying | not null
How to make a request that will show sellers with the most quantity of goods? Thank you.
public.goodstable has foreign key constraint that referencessellers_idcolumn ofpublic.sellers?