Eystein Bye
05/24/2022, 10:17 AMSELECT *
FROM Contact
WHERE id IN (
SELECT contactlist FROM customer WHERE id = 123
)
This works if the contactlist only returns 1 id. But if it returns a list like "123, 456, 789"
The the IN
statement will not work. if i could convert the comma separated list to rows I guess this should workscottvonduhn
05/24/2022, 12:50 PMSELECT *
FROM Contact
WHERE Contact.company = 123
Eystein Bye
05/24/2022, 12:57 PM