How to select 4 tables in one sql query?
-
the four tables are nine, eight, seven, six the query i want to work is "SELECT DISTINCT tag FROM nine, eight, seven, six; ORDER BY date DESC" and it has to fit in one select command
-
Answer:
Some problems I see: You have given no indication via WHERE or JOIN clauses as to how the 4 tables are related - without those, you are simply going to get a (probably meaningless) Cartesian product of all rows from all the tables. You are only selecting column 'tag' - if it appears in only one of the tables, the others are unnecessary. Otherwise, you need to qualify from which table 'tag' is to be taken. You are ordering by 'date' which 1) is a poor choice for a column name (since it's also a data type in many DBMS) and 2) is not part of the selected columns (so ordering by it is meaningless)
Foster at Yahoo! Answers Visit the source
Other answers
there should not be a semi-Colin. the same way you move to 'from' after calling the last desired field name you just leave a blank and move to the next keyword what is it you want from each table?
SELECT tag, date FROM nine union SELECT tag, date FROM eight union SELECT tag, date FROM seven union SELECT tag, date FROM six ORDER BY date DESC
Is your data setup so that each of those tables has a "tag" and "date" column? If not you will need to alias the the tables and use a combination of joins. If each table does have those columns you can use something like: select six.tag, seven.tag, eight.tag, nine.tag from six, seven, eight, nine order by six.date, seven.date, eight.date, nine.date desc
Related Q & A:
- How can I optimize this dynamic SQL query in oracle with PL/SQL?Best solution by docs.oracle.com
- How to Map Two Tables To One Class in Fluent NHibernate?Best solution by stackoverflow.com
- How to convert sql query to Hibernate Criteria query?Best solution by Stack Overflow
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to output XML from a regular SQL query?Best solution by Stack Overflow
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.