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

在将 varchar 值 '6,7,8,9,20,21' 转换成数据类型 int 时失败。解决办法

2012-05-15 
在将 varchar 值 6,7,8,9,20,21 转换成数据类型 int 时失败。select * from table1 where id in (select

在将 varchar 值 '6,7,8,9,20,21' 转换成数据类型 int 时失败。
select * from table1 where id in (select id1s from table2 where id2=1) 
id1是int类型的,id1s是varchar类型的

[解决办法]

SQL code
declare @str varchar(100)select @str = id1s from table2 where id2=1select * from table1 where charindex(','+ltrim(id)+',',','+@str+',') > 0 

热点排行