sql >> Database >  >> RDS >> Mysql

COUNT(*) van meerdere tabellen in MySQL

U kunt dit doen door subquery's te gebruiken, één subquery voor elke tableCount:

SELECT
  (SELECT COUNT(*) FROM table1 WHERE someCondition) as table1Count, 
  (SELECT COUNT(*) FROM table2 WHERE someCondition) as table2Count,
  (SELECT COUNT(*) FROM table3 WHERE someCondition) as table3Count


  1. Afbeelding ophalen uit database in asp.net

  2. Databaseprofilering in IRI Workbench

  3. lopende balans berekenen in oracle-query

  4. Hoe u een controlebeperking op meerdere kolommen in SQL Server kunt maken - SQL Server / TSQL-zelfstudie, deel 84