TABLE quotation
id clientid 1 25 2 25 3 25 4 25 5 26
How can I query how many different clients exist in TABLE qu
TABLE qu
I find a way out
SELECT COUNT(*) as total FROM (SELECT COUNT(*) FROM quotation GROUP BY clientid) t1