MySQL 函数 | find_in_set
2020-07-04 本文已影响0人
乌鲁木齐001号程序员
find_in_set | 作用
- 一次返回多条记录;
SQL 示例
select * from mooc_cat_dict_t cat where find_in_set(cat.UUID, '2,4,22');
- 查询
cat.UUID
是2,4,22
的记录;
select * from mooc_cat_dict_t cat where find_in_set(cat.UUID, '2,4,22');
cat.UUID
是 2,4,22
的记录;