摘要:
原文:http://www.cnblogs.com/tangruixin/archive/2012/04/23/2465917.html1:如果参数是int类型:declare @a xmlset @a='15432'select * from product where id in (select... 阅读全文
摘要:
if not object_id('Tempdb..#T') is null drop table #TGoCreate table #T([ID] int,[Name] nvarchar(1),[Memo] nvarchar(2))Insert #Tselect 1,N'A',N'A1' u... 阅读全文