How to combine two scripts into one?

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

Was this solution helpful to you?

Other answers

You can use a UNION operator:

Sovandara

Find solution

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.