sql查询字符串字段是否存在传进来字符串中的一个值
比如说:数据库中ids字段值为aa,bb,cc传进来的pid字段值为cc,dd,ee这样可以查到一条数据...
比如说:
数据库中 ids 字段值为 aa,bb,cc
传进来的 pid 字段值为 cc,dd,ee
这样可以查到一条数据 展开
数据库中 ids 字段值为 aa,bb,cc
传进来的 pid 字段值为 cc,dd,ee
这样可以查到一条数据 展开
2个回答
展开全部
这样可能才行吧,那pid拆分,然后再在sql语中用like语句:
select * from talbe where ids like '%pid(拆分后)%'。
select * from talbe where ids like '%pid(拆分后)%'。
更多追问追答
追问
这个传进来的字符串长度不定,都是以逗号隔开。这个拆分函数该怎么写列
追答
我现在有一个字符串"1,2,3,4,(5,6),7,(8,(9,10))" 要统计,的个数
按常规 我想按 , 拆成7个
1
2
3
4
(5,6)
7
(8,(9,10))
然后统计 , 的个数 本来这样 , 的个数应该是6个 就是说把(5,6),(8,(9,10))看成一体
不过我只会统计9个出来……
declare @s varchar(100)
set @s="1,2,3,4,(5,6),7,(8,(9,10))"
select
(len(@s)-len(replace(@s,",","")))
-(len(@s)-len(replace(@s,"(","")))
/**
-----------
6
(所影响的行数为 1 行)
**/
SQL codecreate table #tb
(
id int,
col varchar(50),
num int
)
insert into #tb select 1,"aa,bb,cc",10
union all select 2,"aa,aa,bb",20
union all select 3,"aa,aa,bb",20
union all select 4,"dd,ccc,c",30
union all select 5,"ddaa,ccc",40
union all select 6,"eee,ee,c",50
declare @Len int
select top 1 @Len=len(col)+1 from #tb order by len(col)
select @Len
set rowcount @Len
select ID=identity(int,1,1) into #TT from dbo.syscolumns A,dbo.syscolumns B
set rowcount 0
;with hgo as
(
select b.id,
number=substring(col,A.id,charindex(",",col+",",A.id)-A.id)
from #TT A join #tb b on substring(","+col,A.id,1)=","
)
select number,count(distinct id) [count],count(number) [number] from hgo group by number
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询