Merge the content of two similar tables in MySQL

In standard SQL we can combine the contents of two tables with a CROSS JOIN, (BTW these are not instructions to create some table I'll never use again unlike the rest of the solutions I found on the web). In MySQL, I only know how to do this with a UNION ALL clause.

Scenario:
I have a Joomla module which should take the keywords from a specified number of different but similar tables. I'm looking to query the Title and the Introductions of any valid articles from BOTH tables and return one table with everything I want.

Consider the following two tables exist:

Joomla Articles (table name: jos_content):
copyraw
id      title      introtext
--------------------------------------------------------------------------
1       Welcome    This is Joomla
2       Copyright  This site and its design is property of JoelLipman.com
  1.  id      title      introtext 
  2.  -------------------------------------------------------------------------- 
  3.  1       Welcome    This is Joomla 
  4.  2       Copyright  This site and its design is property of JoelLipman.com 

HP Articles (table name: jos_hp_items):
copyraw
id      name       description
--------------------------------------------------------------------------
1       Welcome    This is HP
2       Copyright  This site and its design is property of SomeoneElse.com
  1.  id      name       description 
  2.  -------------------------------------------------------------------------- 
  3.  1       Welcome    This is HP 
  4.  2       Copyright  This site and its design is property of SomeoneElse.com 

Obviously the two above tables are very similar with different column names. I also don't want the data to produce double the number of columns.

My Solution
copyraw
title        intro
--------------------------------------------------------------------
Welcome      This is Joomla
Copyright    This site and its design is property of JoelLipman.com
Welcome      This is HP
Copyright    This site and its design is property of SomeoneElse.com
  1.  title        intro 
  2.  -------------------------------------------------------------------- 
  3.  Welcome      This is Joomla 
  4.  Copyright    This site and its design is property of JoelLipman.com 
  5.  Welcome      This is HP 
  6.  Copyright    This site and its design is property of SomeoneElse.com 

Resulting in:
title        intro
--------------------------------------------------------------------
Welcome      This is Joomla
Copyright    This site and its design is property of JoelLipman.com
Welcome      This is HP
Copyright    This site and its design is property of SomeoneElse.com
Note how I don't use the `id` columns of the tables as I'm quite content with just the two columns I requested. And for those of you that don't know, the alias "AS" is optional in MySQL (think it's optional for most SQL forms).

I found that to add further tables, simply start with another "UNION ALL" clause with a note to give the 3rd table a different alias to the 2nd (so "C" instead of "B"):
SELECT
	title,
	intro
FROM
	(
		SELECT
			`title`,
			`introtext` intro
		FROM
			`jos_content` a
		WHERE
			a.state=1
		UNION ALL 
			SELECT 
				`name` AS title,
				`description` AS intro 
			FROM 
				`jos_hp_items` b 
			WHERE 
				b.published=1
		UNION ALL 
			SELECT 
				`title`,
				`description` intro 
			FROM 
				`jos_weblinks` c
			WHERE 
				c.published=1
	) t1
Category: MySQL :: Article: 316

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com

Related Articles

Joes Revolver Map

Accreditation

Badge - Certified Zoho Creator Associate
Badge - Certified Zoho Creator Associate

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF
© 2024 Joel Lipman .com. All Rights Reserved.