Temporary tables in the SQL server
Tr?n ??i Ngh?a
? Database Administrator | System Administrator | Network Administrator
On the SQL server. Some people usually use temporary tables. Do you know how many types of temp tables there are on the SQL server?
There are 2 types of temp tables: Local & Global
1/ What is the difference between Local & Global temp tables?
Local temporary tables:
Global temp tables:
2/ How to create the temporary tables.
?CREATE TABLE #MyTempTable (ID INT PRIMARY KEY);
CREATE TABLE ##Glb_Temp_Table (ID INT PRIMARY KEY);
3/ Where are the temp tables stored?
4/ Some rules for temporary tables.
? .NET Backend Development
7 个月Useful tips
? Managing Director of Dayone Vietnam
7 个月Very informative
? Software Management at GREEN VET.,JSC
7 个月Wonderful!
? Software Engineer at HBLab JSC?
7 个月Thanks for sharing ??