帮忙看看这个存储过程怎么查不出数据。
create proc GetComment
(@userid varchar)
as
select * from Jarvis_20121122 where userid=@userid
exec GetComment 'itinfo2' 执行后无数据。
select * from Jarvis_20121122 where userid='itinfo2' 直接运行语句是有数据的。
帮忙看看,刚学。
------解决方案--------------------create proc GetComment
(@userid
varchar(1000))
------解决方案--------------------缺省长度=1
------解决方案--------------------varchar 指定大小