I have arrary like below
this1,this2,this3
sometime
this1,this2,this3,this4
etc,
I want find result from my table where tags like array1 or array2 or array3 or sometime like where tags like array1 or array2 or array3 or array4
I have wall_tags have rows like below
this1,this2
this1
this1,this2,this3
etc
I have my current query is like below
SELECT * FROM tbl_wallpaper WHERE `wall_tags` like '%search_value%' ORDER BY id ASC LIMIT 3
I am not able to make it working with arrary, Let me know if someone can help me for do it.