Creating Full Joins : Full Join « Join « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
PostgreSQL
MySQL Tutorial
SQL / MySQL » Join » Full Join 
Creating Full Joins
    
mysql>
mysql>
mysql> CREATE TABLE Books
    -> (
    ->     BookID SMALLINT NOT NULL PRIMARY KEY,
    ->     BookTitle VARCHAR(60NOT NULL,
    ->     Copyright YEAR NOT NULL
    -> )
    -> ENGINE=INNODB;
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO Books VALUES
    -> (12786'Notebook', 1934),
    -> (13331'C++', 1919),
    -> (14356'Opera', 1966),
    -> (15729'Sql Server', 1932),
    -> (16284'C'1996),
    -> (17695'Pascal', 1980),
    -> (19264'Postcards', 1992),
    -> (19354'Oracle', 1993);
Query OK, rows affected (0.00 sec)
Records: 8  Duplicates: 0  Warnings: 0

mysql>
mysql>
mysql> CREATE TABLE Authors
    -> (
    ->     AuthID SMALLINT NOT NULL PRIMARY KEY,
    ->     AuthFN VARCHAR(20),
    ->     AuthMN VARCHAR(20),
    ->     AuthLN VARCHAR(20)
    -> )
    -> ENGINE=INNODB;
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO Authors VALUES
    -> (1006'Hunter', 'S.', 'Thompson'),
    -> (1007'Joyce', 'Carol', 'Oates'),
    -> (1008'Black', NULL, 'Elk'),
    -> (1009'Rainer', 'Maria', 'Rilke'),
    -> (1010'John', 'Kennedy', 'Toole'),
    -> (1011'John', 'G.', 'Neihardt'),
    -> (1012'Annie', NULL, 'Proulx'),
    -> (1013'Alan', NULL, 'Watts'),
    -> (1014'Nelson', NULL, 'Algren');
Query OK, rows affected (0.00 sec)
Records: 9  Duplicates: 0  Warnings: 0

mysql>
mysql>
mysql> CREATE TABLE AuthorBook
    -> (
    ->     BookID SMALLINT NOT NULL,
    ->     AuthID SMALLINT NOT NULL,
    ->     PRIMARY KEY (AuthID, BookID)
    -> )
    -> ENGINE=INNODB;
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO AuthorBook VALUES
    -> (100614356),
    -> (100815729),
    -> (100912786),
    -> (101017695),
    -> (101115729),
    -> (101219264),
    -> (101219354),
    -> (101416284);
Query OK, rows affected (0.00 sec)
Records: 8  Duplicates: 0  Warnings: 0

mysql>
mysql> SELECT BookTitle, Copyright, AuthID
    -> FROM Books, AuthorBook
    -> ORDER BY BookTitle;
+------------+-----------+--------+
| BookTitle  | Copyright | AuthID |
+------------+-----------+--------+
| C          |      1996 |  17695 |
| C          |      1996 |  19264 |
| C          |      1996 |  19354 |
| C          |      1996 |  12786 |
| C          |      1996 |  14356 |
| C          |      1996 |  15729 |
| C          |      1996 |  15729 |
| C          |      1996 |  16284 |
| C++        |      1919 |  16284 |
| C++        |      1919 |  17695 |
| C++        |      1919 |  19264 |
| C++        |      1919 |  19354 |
| C++        |      1919 |  12786 |
| C++        |      1919 |  14356 |
| C++        |      1919 |  15729 |
| C++        |      1919 |  15729 |
| Notebook   |      1934 |  19264 |
| Notebook   |      1934 |  19354 |
| Notebook   |      1934 |  12786 |
| Notebook   |      1934 |  14356 |
| Notebook   |      1934 |  15729 |
| Notebook   |      1934 |  15729 |
| Notebook   |      1934 |  16284 |
| Notebook   |      1934 |  17695 |
| Opera      |      1966 |  15729 |
| Opera      |      1966 |  15729 |
| Opera      |      1966 |  16284 |
| Opera      |      1966 |  17695 |
| Opera      |      1966 |  19264 |
| Opera      |      1966 |  19354 |
| Opera      |      1966 |  12786 |
| Opera      |      1966 |  14356 |
| Oracle     |      1993 |  19354 |
| Oracle     |      1993 |  12786 |
| Oracle     |      1993 |  14356 |
| Oracle     |      1993 |  15729 |
| Oracle     |      1993 |  15729 |
| Oracle     |      1993 |  16284 |
| Oracle     |      1993 |  17695 |
| Oracle     |      1993 |  19264 |
| Pascal     |      1980 |  15729 |
| Pascal     |      1980 |  16284 |
| Pascal     |      1980 |  17695 |
| Pascal     |      1980 |  19264 |
| Pascal     |      1980 |  19354 |
| Pascal     |      1980 |  12786 |
| Pascal     |      1980 |  14356 |
| Pascal     |      1980 |  15729 |
| Postcards  |      1992 |  14356 |
| Postcards  |      1992 |  15729 |
| Postcards  |      1992 |  15729 |
| Postcards  |      1992 |  16284 |
| Postcards  |      1992 |  17695 |
| Postcards  |      1992 |  19264 |
| Postcards  |      1992 |  19354 |
| Postcards  |      1992 |  12786 |
| Sql Server |      1932 |  12786 |
| Sql Server |      1932 |  14356 |
| Sql Server |      1932 |  15729 |
| Sql Server |      1932 |  15729 |
| Sql Server |      1932 |  16284 |
| Sql Server |      1932 |  17695 |
| Sql Server |      1932 |  19264 |
| Sql Server |      1932 |  19354 |
+------------+-----------+--------+
64 rows in set (0.00 sec)

mysql>
mysql>
mysql> drop table AuthorBook;
Query OK, rows affected (0.00 sec)

mysql> drop table Books;
Query OK, rows affected (0.00 sec)

mysql> drop table Authors;
Query OK, rows affected (0.00 sec)

   
    
    
    
  
Related examples in the same category
1.Pick a single row from the full join
2.Join the states table to the book table to map state abbreviations to full names
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.