I have a small problem right now not sure how to get it fixed. I have two tables articles and games, articles stores games like this "|23|56|2|" and the games is ID so "23"
So far Im doing to get the games linked to articles this month
SELECT DISTINCT `game` FROM `vg_articles` WHERE `event` = '8'''
Then doing a loop to go find the game name for the list, The SQL is like this
SELECT * from 'game' WHERE `id` = '%|23|%'
It seems to keep coming up blank even though the game exists.
Any Help Appreciated.