C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Trainings
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
SQL Server Transact Basic to Expert - Create a temporary table
WhatsApp
Karthikeyan Anbarasan
14y
3.1
k
0
0
25
Blog
This blog shows how to create a temporary table in sql server
Syntax:
Create Table #TableName
(Column Name... Types... Null | NotNull)
Example:
CREATE TABLE #Empsal
( EmpID int NOT NULL PRIMARY KEY,
Empsal money NOT NULL,
Empcount int NOT NULL)
People also reading
Membership not found