The direction should be indicated below.
SELECT * FROM (SELECT * FROM <somewhere w/o my_field>), (SELECT * FROM <somewhere with my_field>)
Assuming you have a, b, and c as fields in your original table () - above, you can use (see below) if you need to change the missing values from NULL to 0:
SELECT a, b, c, COALESCE(my_field, 0) as my_field FROM (SELECT * FROM <somewhere w/o my_field>), (SELECT * FROM <somewhere with my_field>)
source share