本文介绍了关于asp.net中的临时表的疑问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我对sqlserver中的临时表有一些疑问
(1)是否可以创建临时表以编程方式(使用asp.net代码)而不使用存储过程,如果是,请提供代码
Hi all,
I have some doubts regarding temp tables in sqlserver
(1) Is it possible to create a temporary table programatically (using asp.net code) without using stored procedures , if yes please provide me code
推荐答案
create table #table1(id bigint,name nvarchar(max))
insert into #table1(id,name)values (1,'xx')
insert into #table1(id,name)values (2,'yy')
select *fro #table1
这篇关于关于asp.net中的临时表的疑问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!