Hi,
SQL below returns 1, 2, 3 in three rows. I want to see only 3 because there are total 3 records.
How can I solve this problem.
Thanks
SELECT COUNT(*) as totalProduct
FROM customers
INNER JOIN uploads ON customers.id = uploads.fk_id
GROUP BY name