I have the following queries:
SELECT count(id) from table_1 WHERE field_1 = 1
SELECT count(id) from table_1 WHERE field_2 = 1
SELECT count(id) from table_1 WHERE field_2 = 1
Can this be done in a Single Query.. only one table is use but 3 outputs like:
count(id) | count(id) | count(id)<br>
12 | 44 | 55