Creating a Table with Duplicate Rows : Temporary Table « Table « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Table » Temporary Table 
3. 7. 7. Creating a Table with Duplicate Rows
4CREATE TABLE Dupes(
5>   ID  int       NOT NULL,
6>   Txt char (10NOT NULL
7)
8> GO
1INSERT Dupes (ID, TxtVALUES (1'x')
2INSERT Dupes (ID, TxtVALUES (1'a')
3INSERT Dupes (ID, TxtVALUES (1'x')
4INSERT Dupes (ID, TxtVALUES (1'x')
5INSERT Dupes (ID, TxtVALUES (2'b')
6INSERT Dupes (ID, TxtVALUES (2'x')
7INSERT Dupes (ID, TxtVALUES (2'b')
8INSERT Dupes (ID, TxtVALUES (3'c')
9> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2>
3> --Creating a Temporary Table of Distinct Rows
4>
5SELECT ID, Txt INTO  #Singles
6FROM
7>     Dupes
8> GROUP BY
9>   ID,
10>   Txt
11> HAVING
12>   COUNT (*1;
13> GO

(rows affected)
1>
2> --Removing the Duplicates
3DELETE FROM Dupes AS D JOIN
4>     #Singles AS S ON  S.ID  = D.ID
5>                   AND S.Txt = D.Txt;
6> GO

(rows affected)
1>
2> --Inserting the Former Duplicates
3>
4INSERT Dupes
5SELECT
6>   *
7FROM
8>   #Singles
9>
10> drop table dupes;
11> GO

(rows affected)
1>
3. 7. Temporary Table
3. 7. 1. Temporary Tables
3. 7. 2. Local temporary Table
3. 7. 3. Using a Temporary Table to Communicate with an EXEC()
3. 7. 4. A script that creates a global temporary table of random numbers
3. 7. 5. A script that uses a local temporary table instead of a derived table
3. 7. 6. SELECT INTO a temporary table
3. 7. 7. Creating a Table with Duplicate Rows
3. 7. 8. A global temporary table's name begins with ##.
3. 7. 9. Creating a Local Temporary Table with a SELECT INTO
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.