摘要:
select ROW_NUMBER() over (order by name) as id,name into #t from sysobjects where xtype='U'; declare @i int,@c int set @i=0 select @c=count(1) from #t 阅读全文
摘要:
执行C#动态代码 1 using System; 2 using System.Data; 3 using System.Configuration; 4 using System.Text; 5 using System.CodeDom.Compiler; 6 using Microsoft.CS 阅读全文