Skip to content

Instantly share code, notes, and snippets.

@drewbanin
Last active October 15, 2017 17:08
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 drewbanin/036a836533bf7fcdc4cdf743b1e3030a to your computer and use it in GitHub Desktop.
Save drewbanin/036a836533bf7fcdc4cdf743b1e3030a to your computer and use it in GitHub Desktop.
select
id,
user_id,
price,
null::timestamp as returned_at -- this column doesn't exist!
from ecom_us.orders
union all
select
id,
user_id,
price,
returned_at
from ecom_uk.orders
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment