Most voted "mysql-find-in-set" questions
Mysql FIND_IN_SET() returns the position of a string if it is present (as a substring) within a list of strings.
Learn more…1 question
Sort by count of
-
3
votes1
answer157
viewsDatabase query refactoring with multiples FIND_IN_SET()
I have the following query to find related topics by a set of ID’s that are not the topic to be viewed: SELECT press.image, press_i18n.title, press_i18n.slug FROM press INNER JOIN press_i18n ON (…