Click to See Complete Forum and Search --> : SQL Join
FMRock
12-31-2002, 04:39 PM
Im trying to join to identical tables, that say have 2 differnt states data. Because of the way the data is imported they cant be in one table. So I would like to make a view that has all the data in it. We are using a SQL Server 2000, and im sure this isnt that hard to do. Any help would be greatful.
Grizzly
12-31-2002, 04:55 PM
Are you familiar with the UNION operator? That would be one way to attack it.
FMRock
12-31-2002, 04:59 PM
Ahh.. ill check that out. I have used that once or twice before but forgot about it. Ill google it and try it.
Thanks Griz
ksuohio
01-08-2003, 07:51 PM
Originally posted by Grizzly
Are you familiar with the UNION operator? That would be one way to attack it.
Smart man!
OS-Wiz
01-08-2003, 09:16 PM
SELECT COL1, COL2, ...
FROM TAB1
UNION ALL
SELECT COL1, COL2, ...
FROM TAB2