临时表

来源:互联网 发布:otsuthreshold python 编辑:程序博客网 时间:2024/06/10 05:36

Create Table #[TableName]

 

CREATE TABLE #TempRegions
(
 IndexId int IDENTITY (1, 1) NOT NULL,
 [Region_ID] int,
 [Region_Name] Nvarchar(200),
 [Region_Code] Nvarchar(2000)
)

原创粉丝点击