在ASP中可以使用临时表吗??如果可以,如何使用??

在ASP中可以使用临时表吗??如果可以,如何使用??
---------------------------------------------------------------

可以呀。
Create table #temTable(id identity(1,1) int not null,username varchar(50) not null)
说明:#temTable为所创建的临时表。

Published At
Categories with Web编程
comments powered by Disqus