91-9990449935 0120-4256464 |
SQL TEMP TABLEThe concept of temporary table is introduced by SQL server. It helps developers in many ways: Temporary tables can be created at run-time and can do all kinds of operations that a normal table can do. These temporary tables are created inside tempdb database. There are two types of temp tables based on the behavior and scope.
Local Temp VariableLocal temp tables are only available at current connection time. It is automatically deleted when user disconnects from instances. It is started with hash (#) sign. Global Temp VariableGlobal temp tables name starts with double hash (##). Once this table is created, it is like a permanent table. It is always ready for all users and not deleted until the total connection is withdrawn.
Next TopicSQL ALTER TABLE
|