在ASP中可以使用临时表吗??如果可以,如何使用??
---------------------------------------------------------------
可以呀。
Create table #temTable(id identity(1,1) int not null,username varchar(50) not null)
说明:#temTable为所创建的临时表。
在ASP中可以使用临时表吗??如果可以,如何使用??
---------------------------------------------------------------
可以呀。
Create table #temTable(id identity(1,1) int not null,username varchar(50) not null)
说明:#temTable为所创建的临时表。