首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

一个sql有关问题

2012-01-21 
一个sql问题急两张表:test1:idname(idint,namevarchar)1test12test23test3test2:nameid(namevarchar,idvar

一个sql问题急
两张表:
test1:
id   name     (id   int   ,name   varchar)
1     test1
2     test2
3     test3
test2:
name   id   (name   varchar,   id   varchar)
test1   1
test2   1,2

查询test2,id在test1包含的内容,结果:
id   name
1   test1
2   test2

[解决办法]
Select Distinct A.*
From test1 A
Inner Join test2 B On CharIndex( ', ' + Cast(A.id As Varchar) + ', ', ', ' + B.id + ', ') > 0

热点排行