I have two tables and have used a simple query:
SELECT * FROM innerb where not exists
(select * from wms where barcode = innerb.barcode) and pcode like '%102';
My results come out like this:
I need to add in a comma for all values so it looks like this:
But I don't want to update the table nor create a new table, just to add it in for few seconds.
Any ideas?