摘要:
select ID_Num = IDENTITY(int, 1, 1),name into #tempt from sysobjects where xtype = 'U' and name like 'ESC_%' and status >=0select * from #temptdeclare @id intset @id = 1DECLARE @STRING VARCHAR(8000... 阅读全文
posted @ 2009-08-26 16:05
Ducan
阅读(395)
评论(0)
推荐(0)