I have this MySql TABLE with name settings:
i need to select
featuredarticle row
from title columns
(settings table) for JOIN and FIND_IN_SET method. i try this code but i dont know how to work for select featuredarticle 'row':
SELECT a.*
FROM articles a
INNER JOIN settings b
ON FIND_IN_SET(a.ID, b.title) <> 0
how rto select this row?