Einzelnen Beitrag anzeigen

stifflersmom

Registriert seit: 8. Dez 2005
Ort: 24994 Holt
379 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#10

Re: MySQL - Group by und Count

  Alt 25. Feb 2008, 15:45
Vielleicht als ganz simples join:

SQL-Code:
SELECT COUNT(a.article_id) as 'count
FROM articles a, articles_data ad
Where ad.article_id = a.article_id
AND ad.show_flag = 0
AND ad.active = 1
AND (a.text LIKE '%blubb%'
        OR a.title LIKE '%blubb%')

GROUP by ad.article_id
  Mit Zitat antworten Zitat