COUNT (*) aus mehreren Tabellen in MySQL

Wie wähle ich COUNT (*) aus mehreren Tabellen in MySQL aus?

Sowie

SELECT COUNT(*) AS table1Count FROM table1 WHERE someCondition
JOIN?? 
SELECT COUNT(*) AS table2Count FROM table2 WHERE someCondition
CROSS JOIN? subqueries?
SELECT COUNT(*) AS table3Count FROM table3 WHERE someCondition

Bearbeiten

Das Ziel ist es, dies zurückzugeben:

+-------------+-------------+-------------+
| table1Count | table2Count | table3Count |
+-------------+-------------+-------------+
| 14          | 27          | 0           |
+-------------+-------------+-------------+

Antworten auf die Frage(8)

Ihre Antwort auf die Frage