find_in_set()
时间: 2023-08-15 08:14:08 浏览: 94
Oracle中没有find_in_set函数,但可以使用REGEXP_LIKE函数来实现类似的功能。例如:
SELECT * FROM table_name WHERE REGEXP_LIKE(column_name, 'value1|value2|value3');
这将返回column_name中包含value1、value2或value3的所有行。
相关问题
FIND_IN_SET
`FIND_IN_SET` is a MySQL function that is used to search for a value within a comma-separated list. It returns the position of the value within the list, or 0 if it is not found. The syntax for using `FIND_IN_SET` is as follows:
```sql
FIND_IN_SET(value, list)
```
Here, `value` is the value to search for, and `list` is the comma-separated list of values.
For example, `FIND_IN_SET('apple', 'apple,banana,grape')` will return 1, as 'apple' is the first value in the list. On the other hand, `FIND_IN_SET('orange', 'apple,banana,grape')` will return 0, as 'orange' is not present in the list.
Is there anything else you would like to know?
find_in_set
() 函数在 MySQL 中有什么作用?
找在使用 MySQL 的数据表中,某个字段的值是否在一个给定的集合中。
该函数的语法为:
```
FIND_IN_SET(string, string_set)
```
其中,string 指定要查询的值,string_set 指定要查询的集合。
返回值为:如果找到了指定的值,则返回它在集合中的位置;否则返回 0。
需要注意的是,如果 string_set 中的值用逗号分隔且带有空格,则在使用此函数时需要精确匹配空格。例如,如果 string_set 的值为 'apple, banana, orange',则要查询的值必须与其自身的格式完全匹配。如果要使用非精确匹配,则需要先将 string_set 中的值用逗号和空格分割开,再使用 FIND_IN_SET() 函数进行查询。
阅读全文