Используйте UNION ALL, чтобы сделать один запрос:
SELECT COUNT(*) as count_1 FROM table_1 WHERE this_1 = '1'
UNION ALL
SELECT COUNT(*) as count_2 FROM table_1 WHERE this_2 = '1'
Так что это приведет к
$a = mysql_query("...the complete query from above...");