Group_Concat Suche mit "like" und "wildcard" in MySQL

Diese Query ist falsch und erzeugt nur eine Fehlermeldung:

SELECT group_concat(country separator ' ') as all_countries FROM `countries` where all_countries like '%zealand%'

MySQL meldet: #1054 - Unknown column 'all_countries' in 'where clause'

 

 

Diese Query kann in Group_Concat Feld (all_countries) suchen

SELECT group_concat(country separator ' ') as all_countries FROM `countries` having all_countries like '%zealand%'

Neuen Kommentar schreiben

CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

Suche

Neueste Kommentare