今天在写数据库的时候竟然发生了很低级的错误
在写存储过程时候
然后
结果让失望的很,没有记录
索性
返回了9条记录
这是为什么啊?
在写存储过程时候
1create Procedure sp_SearchByKey
2 @Key nchar(20)
3As
4begin
5 --print @key
6 return select ar_content from article where ar_content like '%'+@Key+'%'
7end
非常的顺利就创建成功了2 @Key nchar(20)
3As
4begin
5 --print @key
6 return select ar_content from article where ar_content like '%'+@Key+'%'
7end
然后
1exec sp_SearchByKey '通知'
结果让失望的很,没有记录
索性
1select * from article where ar_content like '%通知%'
返回了9条记录
这是为什么啊?