Hello, I'm new here and I'm looking for help from someone more skilled in SQL Queries building.
I've got this:
SELECT categories.category_id, categories.name, categories.parent, COUNT(links.link_id) AS countall
FROM categories LEFT JOIN links ON (categories.category_id = links.category_id)...