急!急!急!在线等!如何用VB.NET在程序中创建临时表?
请大侠们帮帮忙!
我想在程序中创建一个临时表,然后把查询到的数据放入到该表中,创建和插入的代码该怎么写啊?
帮帮忙吧!
[解决办法]
直接创建就行了。
select * into #temptabel from table where ....
[解决办法]
不能用#,就用##創建全局的,如下:
Select * into ##temptabel from table where ....