2014年1月9日 星期四

sql 建立臨時 Table

CREATE TABLE dbo.#News
(
News_id int NOT NULL,
NewsTitle nvarchar(50),
NewsContent nvarchar(50),
NewsDateTime datetime
)
INSERT INTO dbo.#News (News_id, NewsTitle, NewsContent)
VALUES (1,'BlueGreen', 'Austen')

SELECT * FROM dbo.#News
DROP TABLE dbo.[#News]   --釋放資源

標籤:

0 個意見:

張貼留言

訂閱 張貼留言 [Atom]

<< 首頁