Maison  >  Article  >  développement back-end  >  mysql group by 分组问题。

mysql group by 分组问题。

WBOY
WBOYoriginal
2016-10-10 11:55:561289parcourir

mysql group by 分组问题。

如图,想按number字段中的数据以逗号分割后来进行分组?
比如内容 为12,的图中可能只有3个,为123的有1个。在线求大神(暂不考虑拆表和其它存储方式来进行分组)

回复内容:

mysql group by 分组问题。

如图,想按number字段中的数据以逗号分割后来进行分组?
比如内容 为12,的图中可能只有3个,为123的有1个。在线求大神(暂不考虑拆表和其它存储方式来进行分组)

mysql有个函数:find_in_set.具体用法如下:

<code>select id from table where FIND_IN_SET('12',number);
</code>

上面这句可以取出number为12的ID集合。

看了楼上的find_in_set,没用过,找到了这篇文字,写的很好:
https://segmentfault.com/a/11...

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn