vote up 4 vote down star

I have a database with two tables (Table1 and Table2). They both have a common column [ColumnA] which is an nvarchar. How can I select this column from both tables and return it as a single column in my result set?

So I'm looking for something like:

ColumnA in Table1:
a
b
c

ColumnA in Table2:
d
e
f

Result set should be:
a
b
c
d
e
f
flag

8 Answers

vote up 10 vote down check
SELECT ColumnA FROM Table1 UNION Select ColumnB FROM Table2 ORDER BY 1

Also, if you know the contents of Table1 and Table2 will NEVER overlap, you can use UNION ALL in place of UNION instead. Saves a little bit of resources that way.

-- Kevin Fairchild

link|flag
You can do ORDER BY 1 in your first query to avoid the need for the subquery when ordering. – mbrierst Nov 7 '08 at 21:31
Good catch. Thanks. – Kevin Fairchild Nov 14 '08 at 22:18
vote up 1 vote down

Use the UNION operator:

SELECT ColumnA FROM Table1
UNION
SELECT ColumnA FROM Table2
link|flag
vote up 0 vote down

You can use a union select:

Select columnA from table1 union select columnA from table2
link|flag
vote up 0 vote down
SELECT Table1.*, Table2.d, Table2.e, Table2.f 
FROM Table1 JOIN Table2 ON Table1.a = Table2.a

Or am I misunderstanding your question?

Edit: It appears I did.

link|flag
My initial read of the question was the same as yours, JesDaw. Original poster, it would have been a little clearer to explain that "a, b, c", etc, were the values in ColumnA, especially since you used the letter a for both a column and a value. Just nitpicking, I guess. – Ian Varley Nov 15 '08 at 13:56
vote up 0 vote down

I believe it's:

SELECT columna FROM table1 UNION SELECT columnb FROM table2;
link|flag
vote up 2 vote down

Do you care if you get dups or not?

UNION will be slower than UNION ALL because UNION will filter out dups

link|flag
vote up 0 vote down

In Oracle (at least) there is UNION and UNION ALL, UNION ALL will return all results from both sets even if there are duplicates, where as UNION will return the distinct results from both sets.

link|flag
vote up 1 vote down

The union answer is almost correct, depending on overlapping values:

SELECT distinct ColumnA FROM Table1
UNION
SELECT distinct ColumnA FROM Table2

If 'd' appeared in Table1 or 'c' appeared in Table2 you would have multiple rows with them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.