I need the following sql query converting to Propel:
SELECT tag.tag, count( content_tag.tag_id ) AS weight
FROM content_tag, tag
WHERE content_tag.tag_id = tag.id
GROUP BY content_tag.tag_id
ORDER BY weight DESC , tag.ord_id ASC
Any ideas on how to do the count clause?
Thank you
I think that could help solve it