MySQL选择值在IN列表字符串中?

为此,请使用FIND_IN_SET()

让我们创建一个表-

示例

mysql> create table demo81

   -> (

   -> id int not null auto_increment primary key,

   -> username varchar(200)

   -> );

以下是查询以选择值在IN列表字符串中的位置-

示例

mysql> select *from demo81 where find_in_set('Chris',username) > 0;

这将产生以下输出-

输出结果

+----+------------------+

| id | username         |

+----+------------------+

|  1 | John,Chris,David |

|  3 | Chris,Bob,Sam    |

|  4 | Mike,John,Chris  |

+----+------------------+

3 rows in set (0.03 sec)

以上是 MySQL选择值在IN列表字符串中? 的全部内容, 来源链接: utcz.com/z/326366.html

回到顶部