摘要:
create table #temp(Name varchar(50))--创建临时表 insert #temp select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='T_Staff')select * from #temp declare @MyCursor C... 阅读全文
posted @ 2009-09-13 23:30
Danny Chen
阅读(183)
评论(0)
推荐(0)