There is a query:
SELECT blalist FROM blatable WHERE blafield=714
which returns a string that looks like: "2,12,29,714,543,1719". And there is another query:
SELECT userid, name, surname, creditcardnum, items
FROM stolencards WHERE userid IN
(SELECT blalist FROM blatable WHERE blafield=714)
Now that's not working.
I only managed to get it working by executing these queries separately. What should I do to keep it in a single query?