mdunlap99
asked on
SQL query from multiple tables.
Greetings,
I have two views with identical data fields. I want to select all the data from each and list them sequentially. For example view1 has data field Order# with values 1,3,5,7. View2 has Order# with values 2,4,6,8. Is it possible to have a single select statement that produces a result set as Order# 1,2,3,4,5,6,7,8?
I have two views with identical data fields. I want to select all the data from each and list them sequentially. For example view1 has data field Order# with values 1,3,5,7. View2 has Order# with values 2,4,6,8. Is it possible to have a single select statement that produces a result set as Order# 1,2,3,4,5,6,7,8?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
union all
select field1 from table 2
order by field1