Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created January 9, 2020 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topherPedersen/0631fa913fa0f928b25200a22694fd00 to your computer and use it in GitHub Desktop.
Save topherPedersen/0631fa913fa0f928b25200a22694fd00 to your computer and use it in GitHub Desktop.
FULL JOIN in MySQL
SELECT * FROM a
LEFT JOIN b ON a.id = b.id
UNION
SELECT * FROM a
RIGHT JOIN b ON a.id = b.id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment