比如2条数据里面有相同的编号
10,101,12,14
10,104,15,16
要查找里面的10,而不需要把101,104查找出来
在sqlserver里面使用 charindex(‘,10,‘,‘,‘+Dependency+‘,‘)这个条件就可以了。
mysql里面使用 where FIND_IN_SET(‘10‘,Dependency) 就可以了
这里的Dependency是自己需要查找的字段
时间: 2024-10-22 21:58:07
比如2条数据里面有相同的编号
10,101,12,14
10,104,15,16
要查找里面的10,而不需要把101,104查找出来
在sqlserver里面使用 charindex(‘,10,‘,‘,‘+Dependency+‘,‘)这个条件就可以了。
mysql里面使用 where FIND_IN_SET(‘10‘,Dependency) 就可以了
这里的Dependency是自己需要查找的字段