sql >> Database >  >> RDS >> Mysql

Zoek in GROUP_CONCAT met LIKE

Probeer dit:

SELECT orders.orderID, 
GROUP_CONCAT(contacts.firstName, " ", contacts.lastName) AS attachedContacts
FROM orders
JOIN contacts ON orders.contactID=contacts.contactID
GROUP BY orders.orderID DESC
HAVING attachedContacts LIKE '%Eric%'



  1. mysql tabel structuur voorstel?

  2. Perfect Storm voor het upgraden naar een moderne versie van SQL Server

  3. Vorige MySQL-gegevensmap gebruiken bij nieuwe MySQL-installatie

  4. Hoe gebruik je een tabeltype in een SELECT FROM-instructie?