sql语句 查询字段中包含某个数字的列信息
表[info]中字段ID有以下数字,怎样使用select语句筛选出数字9(19,29等不算)的记录,请写出select语句。0,1,9,19,2091,9,11,200,...
表[info]中字段ID有以下数字,怎样使用select语句筛选出数字9(19,29等不算)的记录,请写出select语句。
0,1,9,19,20
9
1,9,11,20
0,2,30,9
85,5,29,19
25,109,191,200
筛选出包含9的记录,19,291等不算。 展开
0,1,9,19,20
9
1,9,11,20
0,2,30,9
85,5,29,19
25,109,191,200
筛选出包含9的记录,19,291等不算。 展开
3个回答
展开全部
select * from info where (',' + id + ',') like ('%,' + '9' +',%')
追问
这与select * from info where (',id,' like '%,9,%') 有何不同? 我试过了,这样一条数据也筛不出来。
追答
create table testtb(
id varchar(30)
)
insert into testtb(id)
select '0,1,9,19,20' union all
select '9' union all
select '1,9,11,20' union all
select '0,2,30,9' union all
select '85,5,29,19' union all
select '25,109,191,200'
select * from testtb
select * from testtb where ',' + id + ',' like '%,9,%'
这样是没问题的,应该是','的原因,你的数据库里是中文逗号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select *
from test
where id like '%,'+'9'+',%' or id=9 or right(id,1)=9
from test
where id like '%,'+'9'+',%' or id=9 or right(id,1)=9
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from info where id=9
追问
这显然不行,这只能选出第二条(9)的数据,0,1,9,19,20这些数据筛不出来
追答
你不是要只查9的记录吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询