How to find count of multiple columns in a table
create table foo (key1 int(11), key2 int(11) ..)
I would like to do select count() for key1 and count() for key2 from foo in a single query, is it possible?
How to find count of multiple columns in a table
create table foo (key1 int(11), key2 int(11) ..)
I would like to do select count() for key1 and count() for key2 from foo in a single query, is it possible?