Combine two table into one using sql statement?
-
I have two table with same column name and structure .I would like to know how to combine two table into one table . table1 col1 col 2 col3 10 20 30 table2 col1 col 2 col3 40 50 60 out put col1 col 2 col3 10 20 30 40 50 60
-
Answer:
You can use union: SELECT * FROM table1 UNION SELECT * FROM table2
Alex Alex at Yahoo! Answers Visit the source
Other answers
You can use a UNION operator:
Sovandara
Related Q & A:
- How To Connect Two Different Network Segments Using A Switch And A Router?Best solution by Super User
- How to Map Two Tables To One Class in Fluent NHibernate?Best solution by stackoverflow.com
- How to add primary key from multiple table as a foreign key in a table in sql server 2008?Best solution by stackoverflow.com
- How to write SQL statement with dynamic where clause?Best solution by Stack Overflow
- What is the difference between two way and one way security systems in car alarms?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.