SQL-92 Cross Join Syntax : Cross Join « Table Join « 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 Join » Cross Join 
4. 2. 1. SQL-92 Cross Join Syntax
4CREATE TABLE Departments(
5> Deptno   int         NOT NULL CONSTRAINT PK_dept_deptno PRIMARY KEY,
6> deptname varchar(15NOT NULL
7)
8> GO
1>
2CREATE TABLE Jobs(
3> jobid   int         NOT NULL CONSTRAINT PK_jobs_jobid PRIMARY KEY,
4> jobdesc varchar(15NOT NULL
5)
6> GO
1>
2INSERT INTO Departments VALUES(100'Java2sing')
3INSERT INTO Departments VALUES(200'Production')
4INSERT INTO Departments VALUES(300'Marketing')
5INSERT INTO Departments VALUES(400'Management')
6INSERT INTO Jobs VALUES(10'Java2s')
7INSERT INTO Jobs VALUES(20'Oracle')
8INSERT INTO Jobs VALUES(30'MySQL')
9INSERT INTO Jobs VALUES(40'SqlServer')
10> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2>
3SELECT
4>   deptname,
5>   jobdesc
6FROM
7>   Departments
8>   CROSS JOIN
9>   Jobs
10>
11> drop table Jobs
12> drop table Departments
13> GO
deptname        jobdesc
--------------- ---------------
Java2sing     Java2s
Production      Java2s
Marketing       Java2s
Management      Java2s
Java2sing     Oracle
Production      Oracle
Marketing       Oracle
Management      Oracle
Java2sing     MySQL
Production      MySQL
Marketing       MySQL
Management      MySQL
Java2sing     SqlServer
Production      SqlServer
Marketing       SqlServer
Management      SqlServer

(16 rows affected)
1>
4. 2. Cross Join
4. 2. 1. SQL-92 Cross Join Syntax
4. 2. 2. Cross Join with itself
4. 2. 3. Matching Couples Using a Cross Join; Couples with Different Genders
4. 2. 4. it is the Cartesian product of all the rows from all tables participating in the SELECT statement
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.