Home Accessibility Courses Twitter The Mouth Facebook Resources Site Map About Us Contact
 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
Two tables ... an illustration of the different joins
SQL Primer as Used in MySQL example from a Well House Consultants training course
More on SQL Primer as Used in MySQL [link]

This example is described in the following article(s):
   • Databases - why data is split into separate tables, and how to join them - [link]

This example references the following resources:
http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html

Source code: linked.sql Module: S152
# Two tables ... an illustration of the different joins

# In this example (from a MySQL course example I wrote for our delegates)
# we create two tables - one of train journeys, and the other of places
# to eat at the station prior to departure.
#
# Since there are a number of possible journeys from each starting point,
# I used two tables - one for the journeys, and another to give the best
# place at each starting point before the journey. That way, I only have
# one set of data to maintain about best eating places, and no duplication
# of data. I then use a MySQL JOIN clause in my SELECT to link up the tables.
#
# A regular JOIN will ONLY give me results where there is somewhere to eat
# at the departure station. If I don't have anywhere available to eat, or
# if there's somewhere to eat at a station from which I have no journeys, there
# will be no record in the output.
#
# If, on the other hand, I use a LEFT JOIN, my result set will include all of
# the joined records for a regular join and IN ADDITION I'll get an additional
# record for each row in the left hand table that has no match in the right
# hand table, with the joined record being filled in with NULLs. Thus my result
# set will have at least one record in it for each and every record in the
# incoming left hand table.
#
# A RIGHT JOIN, similarly, includes at least one record on the output for
# each record in the incoming right hand set ...
#
# So -
# * left table: places to eat
# * right table: journeys
# means
# * regular join: Journeys where you can eat before travelling
# * left join: all places to eat PLUS all journeys you can make after eating
# * right join: all journeys, and places to eat beforehand where available

drop table if exists journey;
create table journey (
     jid int primary key not null auto_increment,
     start_at text,
     end_at text,
     miles int);

drop table if exists place;
create table place (
     pid int primary key not null auto_increment,
     called text,
     gridref text,
     about text);

insert into journey values (1,"Chippenham","London",95);
insert into journey values (2,"Chippenham","Slough",80);
insert into journey values (3,"Llandod","Hereford",35);
insert into journey values (4,"Hereford","Newport",40);
insert into journey (start_at, end_at, miles) values ("Melksham","Acton",95);
insert into journey (start_at, end_at, miles) values ("Melksham","Chippenham",5);

delete from journey where jid = 4;
replace into journey values (3,"Llandrindod Wells","Hereford",35);
update journey set miles = 96 where jid = 1;

insert into place (called,gridref,about) values
        ("Chippenham","SU635443","Nice Chinese"),
        ("London","TQ543223","Yo Sushi"),
        ("Westbury","ST998665","Tail of Spice"),
        ("Melksham","SU654222","Burger Van");

# Two alternative ways of linking tables ... first shows principle BUT
# second is the 'proper' and more efficient way:

select * from place,journey where called = start_at and miles > 50;
select * from place join journey on called = start_at where miles > 50;

# +-----+------------+----------+--------------+-----+------------+--------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +-----+------------+----------+--------------+-----+------------+--------+-------+
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# +-----+------------+----------+--------------+-----+------------+--------+-------+
# 3 rows in set (0.00 sec)
#
# +-----+------------+----------+--------------+-----+------------+--------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +-----+------------+----------+--------------+-----+------------+--------+-------+
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# +-----+------------+----------+--------------+-----+------------+--------+-------+
# 3 rows in set (0.00 sec)

# DIFFERENCE BETWEEN MATCH TYPES ...

# All records that match

select * from place join journey on called = start_at;
# or use further / full qualification if there may be conflict
select * from place join journey on place.called = graham.journey.start_at;

# +-----+------------+----------+--------------+-----+------------+------------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +-----+------------+----------+--------------+-----+------------+------------+-------+
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# | 4 | Melksham | SU654222 | Burger Van | 6 | Melksham | Chippenham | 5 |
# +-----+------------+----------+--------------+-----+------------+------------+-------+
# 4 rows in set (0.00 sec)
#
# +-----+------------+----------+--------------+-----+------------+------------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +-----+------------+----------+--------------+-----+------------+------------+-------+
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# | 4 | Melksham | SU654222 | Burger Van | 6 | Melksham | Chippenham | 5 |
# +-----+------------+----------+--------------+-----+------------+------------+-------+
# 4 rows in set (0.00 sec)

# All records that match PLUS orphans in left / right table

select * from place left join journey on called = start_at;
select * from place right join journey on called = start_at;

# +-----+------------+----------+---------------+------+------------+------------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +-----+------------+----------+---------------+------+------------+------------+-------+
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | 2 | London | TQ543223 | Yo Sushi | NULL | NULL | NULL | NULL |
# | 3 | Westbury | ST998665 | Tail of Spice | NULL | NULL | NULL | NULL |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# | 4 | Melksham | SU654222 | Burger Van | 6 | Melksham | Chippenham | 5 |
# +-----+------------+----------+---------------+------+------------+------------+-------+
# 6 rows in set (0.00 sec)
#
# +------+------------+----------+--------------+-----+-------------------+------------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +------+------------+----------+--------------+-----+-------------------+------------+-------+
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | NULL | NULL | NULL | NULL | 3 | Llandrindod Wells | Hereford | 35 |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# | 4 | Melksham | SU654222 | Burger Van | 6 | Melksham | Chippenham | 5 |
# +------+------------+----------+--------------+-----+-------------------+------------+-------+
# 5 rows in set (0.00 sec)

# JUST orphans in left / right table

# next line is WRONG ...
select * from place left join journey on called = start_at where jid = NULL;

#
# Empty set (0.00 sec)
#

# instead, you want ...
select * from place left join journey on called = start_at where jid is NULL;

# +-----+----------+----------+---------------+------+----------+--------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +-----+----------+----------+---------------+------+----------+--------+-------+
# | 2 | London | TQ543223 | Yo Sushi | NULL | NULL | NULL | NULL |
# | 3 | Westbury | ST998665 | Tail of Spice | NULL | NULL | NULL | NULL |
# +-----+----------+----------+---------------+------+----------+--------+-------+
# 2 rows in set (0.00 sec)

# and
select * from place right join journey on called = start_at where pid is NULL;

# +------+--------+---------+-------+-----+-------------------+----------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +------+--------+---------+-------+-----+-------------------+----------+-------+
# | NULL | NULL | NULL | NULL | 3 | Llandrindod Wells | Hereford | 35 |
# +------+--------+---------+-------+-----+-------------------+----------+-------+
# 1 row in set (0.00 sec)
# http://dev.mysql.com/doc/refman/5.5/en/reserved-words.html

# Example that's sorted ...

select * from place right join journey on called = start_at order by called desc, miles;

# +------+------------+----------+--------------+-----+-------------------+------------+-------+
# | pid | called | gridref | about | jid | start_at | end_at | miles |
# +------+------------+----------+--------------+-----+-------------------+------------+-------+
# | 4 | Melksham | SU654222 | Burger Van | 6 | Melksham | Chippenham | 5 |
# | 4 | Melksham | SU654222 | Burger Van | 5 | Melksham | Acton | 95 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 2 | Chippenham | Slough | 80 |
# | 1 | Chippenham | SU635443 | Nice Chinese | 1 | Chippenham | London | 96 |
# | NULL | NULL | NULL | NULL | 3 | Llandrindod Wells | Hereford | 35 |
# +------+------------+----------+--------------+-----+-------------------+------------+-------+
# 5 rows in set (0.00 sec)
Learn about this subject
This module and example are covered on the following public courses:
 * Deploying LAMP - Linux, Apache, MySQL, Perl/PHP
 * Linux Web Server
 * MySQL
 * Deploying Java Applications on Linux / Unix
Also available on on site courses for larger groups

Books covering this topic
Yes. We have over 700 books in our library. Books covering are listed here and when you've selected a relevant book we'll link you on to Amazon to order.

Other Examples
This example comes from our "SQL Primer as Used in MySQL" training module. You'll find a description of the topic and some other closely related examples on the "SQL Primer as Used in MySQL" module index page.

Full description of the source code
The complete training module that describes this source code is availble for download (for limited use) from our download centre.

Other resources
• Our Solutions centre provides a number of longer technical articles.
• Our Opentalk forum archive provides a question and answer centre.
The Horse's mouth provides a daily tip or thought.
• Further resources are available via the resources centre.
• All of these resources can be searched through through our search engine
• And there's a global index here.

Purpose of this website
This is a sample program, class demonstration or answer from a training course. It's main purpose is to provide an after-course service to customers who have attended our public private or on site courses, but the examples are made generally available under conditions described below.

Web site author
This web site is written and maintained by Well House Consultants.

Conditions of use
Past attendees on our training courses are welcome to use individual examples in the course of their programming, but must check the examples they use to ensure that they are suitable for their job. Remember that some of our examples show you how not to do things - check in your notes. Well House Consultants take no responsibility for the suitability of these example programs to customer's needs.

This program is copyright Well House Consultants Ltd. You are forbidden from using it for running your own training courses without our prior written permission. See our page on courseware provision for more details.

Any of our images within this code may NOT be reused on a public URL without our prior permission. For Bona Fide personal use, we will often grant you permission provided that you provide a link back. Commercial use on a website will incur a license fee for each image used - details on request.

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/resources/ex.php • PAGE BUILT: Sun Oct 11 14:50:09 2020 • BUILD SYSTEM: JelliaJamb