建立全域性臨時表和區域性臨時表
2009-08-26 10:00:54
分類:linux
--臨時表存在於系統資料庫tempdb內
全域性的臨時表使用##即兩個#號
例--判斷臨時表是否存在
if (object_id('tempdb..##temptable') is not null)
begin
print 1
drop table iweix.##temptable
end--建立臨時表
create table iweix.##temptable
(id int primary key identity,
[name] nvarchar(100)
)insert into ##temptable ([name]) values('a')
insert into ##temptable ([name]) values('b')
select * from ##temptable
全域性臨時表一旦建立在其他查詢時也可以使用裡面的資料
區域性臨時表僅限於本次連線查詢,在其他查詢連線中無效使用單#號建立
例如--判斷臨時表是否存在
if (object_id('tempdb..#temptable') is not null)
begin
print 1
drop table iweix.#temptable
end--建立臨時表
create table iweix.#temptable
(id int primary key identity,
[name] nvarchar(100)
)insert into #temptable ([name]) values('a')
insert into #temptable ([name]) values('b')
select * from #temptable
技術 試題 總結
58同城 1.10只老鼠10只杯檢測1000瓶酒中的毒酒 題目 現有1000瓶葡萄酒,只知道其中有一瓶是毒酒,但不知道是哪瓶,喝一點點毒酒,就會在一周之內發病死亡。試用最少的老鼠在一周時間試出哪瓶酒有毒。solution 1 編號 給葡萄酒標上數字 1 1000 給老滑鼠上 0 9 相應給杯標上 0...
虛擬技術總結
支援虛擬技術的處理器有乙個廣義指令集 extra instruction set 代號為virtual machine extensions,或者簡稱vmx。vmx為cpu帶來了10條新的虛擬指令 vmptrld vmptrst vmclear vmread vmwrite vmcall vmlau...
C 技術總結
wpf 畫面執行緒委託方法 dispatcher.invoke new action serviceprovider.configure wpf 模型資料繫結方法1 viewmodelbase.cs using system using system.componentmodel using sys...