随笔 - 236,  文章 - 1,  评论 - 3,  阅读 - 25万

create proc abc
(
    @condition varchar(2000)
)
as
begin
 declare @strsql varchar(8000)
 set @strsql='select * from table1
 where 1=1'+@condition+' order by id desc'
 print @strsql
 exec(@strsql)
end

posted on   御不凡  阅读(166)  评论(0编辑  收藏  举报

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示