I am getting data from two different table sources. What is the best way to combine them into one?
For example:
table one has the following columns:
date | time | exchange
table two has the following columns:
date | time | price | position
I want to combine them so I can create a table that has:
date | time | exchange | position | price
Sometimes position and exchange columns are empty. What is the best way to create this new table?