‘壹’ sql2000 存储过程怎样得到临时表中查询出来的返回值非常急,请求大侠帮忙,解决的话,可以多加分...
数据库中,没有提交事务,所以能看到数据。
而java调用的时候,临时表已经被删掉了。所以查不到数据。
可以在该存储过程不删除该临时表。每次在使用该临时表时,清空该表。
‘贰’ 使用SQL临时表
sql server 2000 可以创樱慎乱建临孝裤时表 ,如
select * into #temp_T from table1 ,table2 where 条件
select * into #temp_T2 from table3 ,table4 where 条件
select * from #temp_T , #temp_T2 where 条件脊档
‘叁’ sql server 2000中,请问临时表在哪里可以查看到
select name from tempdb.dbo.sysobjects where type='u' and name like '#%'
这时候你会看到所有的临时表,不过这里的名称一般是你设定的临时表名开头后边有一串________________00000000002这样的字符,这是为了避免多用户使用同一临时表名时发生冲突。