Home > Database > Mysql Tutorial > Mysql find_in_set()函数使用方法

Mysql find_in_set()函数使用方法

WBOY
Release: 2016-06-07 17:53:12
Original
1624 people have browsed it

find_in_set()函数在mysql中是用来查找字类类型为SET()的内容查询的,下面我来给各位朋友简单的介绍介绍。

先看mysql手册中find_in_set函数的语法:

 代码如下 复制代码

FIND_IN_SET(str,strlist)


假如字符串str 在由N 子链组成的字符串列表strlist 中,则返回值的范围在 1 到 N 之间。一个字符串列表就是一个由一些被‘,’符号分开的自链组成的字符串。如果第一个参数是一个常数字符串,而第二个是type SET列,则   FIND_IN_SET() 函数被优化,使用比特计算。如果str不在strlist 或strlist 为空字符串,则返回值为 0 。如任意一个参数为NULL,则返回值为 NULL。这个函数在第一个参数包含一个逗号(‘,’)时将无法正常运行。
mysql> SELECT FIND_IN_SET('b','a,b,c,d');
-> 2

在中查询

将用户的所有权限id存入此字段。比如有:1,2,3,4,5这样的五个权限

查找哪些用户拥有权限id为1的权限
 

 代码如下 复制代码
* from user where find_in_set('1',purview);
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template