Difference between FIND_IN_SET and IN in Mysql?
You will learn how to use FIND_IN_SET and IN in this tutorial. FIND_IN_SET: It is a built-in function that is used to find the position of a string within a comma-separated list of strings. Syntax: FIND_IN_SET(value,list); value: String value to search in list. list: Comma separated string list. FIND_IN_SET returns null if … Read more