Hi All
How can i incorporate all Letters that names.id <> left(forename,1)
SELECT names.id, count(left(forename,1)) as count
FROM customers, names
WHERE names.id = left(forename,1)
GROUP BY names.id
at the moment it returns
A 1
B 3
E 5
but i want it to show all the values, i.e.
A 1
B...