Einzelnen Beitrag anzeigen

hhcm

Registriert seit: 12. Feb 2006
Ort: Wegberg
310 Beiträge
 
Delphi 11 Alexandria
 
#4

AW: [MySQL]Count über andere Tabelle als Feld in ein Select einbinden

  Alt 11. Dez 2019, 18:14
z.B So.

Code:
SELECT
   tabelle1.ID,
   tabelle1.Name,
   (SELECT count(ID) FROM tabelle2 WHERE tabelle2.RefID = tabelle1.ID) as Menge
FROM tabelle1
oder so?

Code:
SELECT
      tabelle1.ID,
      tabelle1.Name,
      COUNT( tabelle2.ID ) as Menge
FROM tabelle1
LEFT JOIN tabelle2 ON tabelle1.ID = tabelle2.RefId
GROUP BY tabelle1.ID
Chris

Geändert von hhcm (11. Dez 2019 um 18:28 Uhr)
  Mit Zitat antworten Zitat