Registriert seit: 11. Nov 2003
Ort: Oldenburg
1.446 Beiträge
Delphi 10.2 Tokyo Enterprise
|
Re: MySQL - Group by und Count
25. Feb 2008, 11:10
Versuch mal
SQL-Code:
SELECT COUNT(ad.article_id) as 'count' FROM articles a
LEFT JOIN articles_data ad
ON ad.article_id = a.article_id
AND ad.show_flag = 0
AND ad.active = 1
WHERE a.text LIKE '%blubb%'
OR a.title LIKE '%blubb%'
GROUP by ad.article_id
Frank Tux sein Lieblingsquellcode
While anzfische<TuxSatt do begin
Fisch:=TFisch.Create; Tux.EssenFisch(Fisch); Fisch.Free;inc(anzfische); end;
|