Es handelt sich nicht um eine Datenbankoperation, sondern um eine PHP-Operation.
Zum Beispiel:
$a="1,2,3,4,5,6,7,8,9,10,11"
$b="8,9,10,11,12,13 , 17,18,19,20"
$c="10,11,12,13,14,15,16,18,20,21,22,23,24"
Erforderliche Ergebnisse
$ a="1-11"
$b="8-13,17-20"
$c="10-16,18,20-24"
Bitte gib mir Anleitung
傻瓜一点的我们先进行分割 $strList = explode(",",$str);
之后可以从第一个或者最后一个进行循环+1,-1比较。
不等时,输出开始位+结束位,然后继续下一步循环。
用递归也可。