I have the following two tables:
uid | ABC | ... (bunch of other stuff) ...
1 | val 1 | ... (bunch of other stuff) ...
2 | val 2 | ... (bunch of other stuff) ...
3 | val 3 | ... (bunch of other stuff) ...
and...
uid | DEF | ... (bunch of other stuff) ...
4 | val 4 | ... (bunch of other stuff) ...
5 | val 5 | ... (bunch of other stuff) ...
6 | val 6 | ... (bunch of other stuff) ...
I want to end up with...
uid | text | ... (bunch of other stuff) ...
1 | val 1 | ... (bunch of other stuff) ...
2 | val 2 | ... (bunch of other stuff) ...
3 | val 3 | ... (bunch of other stuff) ...
4 | val 4 | ... (bunch of other stuff) ...
5 | val 5 | ... (bunch of other stuff) ...
6 | val 6 | ... (bunch of other stuff) ...
This looks so simple, but I just can't seem to figure out how to do this. It's not a join? Is it?