SQL Server temporary table usage

Source: Internet
Author: User

Usage:

Temporary tables can be used to store related records for complex queries, which improves efficiency andProgramIs similar
My_cursor declare my_cursor cursor scroll
For select field from tablename
Temporary tables are divided into user temporary tables and system temporary tables.
Differences between the system temporary table and the user temporary table:
1) user temporary table: the name of the user temporary table starts;
The period of the user temporary table exists only in the session of the user who created the table, and is invisible to other processes.
The temporary table is automatically deleted when the process that created it disappears.
2) system temporary table: the name of the system temporary table starts #
The global temporary table is visible to the entire SQL server instance, but it is automatically deleted when all sessions accessing it disappear, for example, restarting the database.
Create a temporary table:
1)CopyCodeThe Code is as follows: Create Table temptablename
(
Id int identity (1, 1) not null,
A1 varchar (50 ),
A2 varchar (50 ),
A3 varchar (50 ),
Primary Key (ID) -- Define ID as a temporary table # primary key of TMP
)

2) select [Field 1, Field 2,...,] into # TMP from table

Query temporary table data select * from # TMP

Delete temporary table drop table # TMP

Truncate table # TMP

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.