在我的存储过程中,我使用的是动态查询。我正在传递参数@nameid int
where 语句抛出错误。
@strWhere = ' where name_id in ('+@nameid+') and timeid=10'
错误
将 varchar 值 ' where name_id in (' 转换为数据类型 int 时转换失败。
在我的存储过程中,我使用的是动态查询。我正在传递参数@nameid int
where 语句抛出错误。
@strWhere = ' where name_id in ('+@nameid+') and timeid=10'
错误
将 varchar 值 ' where name_id in (' 转换为数据类型 int 时转换失败。