Prova questo:
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%'
Prova questo:
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%'
Come modificare le colonne o generare script Alter utilizzando la GUI in SQL Server - Tutorial SQL Server / T-SQL Parte 38
Utilizzo del passaggio Unpivot per creare una tabella tabulare da una tabella a campi incrociati
Filtraggio dei registri di avviso in EM13c
Devo proteggermi dall'iniezione di SQL se ho usato un menu a discesa?