摘要: 原本写的 select * from table where name like '%@searchStr%'怎么执行都不对,想想 参数是不能加 引号的于是改为select * from table where name like '%'+@searchStr+'%' 则正确执行 阅读全文
posted @ 2013-07-07 15:07 文刀君 阅读(1164) 评论(0) 推荐(0)