MS Access Query Query
-
Complicated (or probably not complicated) MS Access question that I'm not sure how to google for. So I have a table called Sequences which contains SeqNum (primary key), ID (a train service ID) and Node (a place the train goes through). I have another table called Area Boundaries which has a smaller subset of nodes and an associated area. I want to do a query which shows all the records from Sequences and then adds on the end if there is an associated area. Roughly 1 node in 30 has an associated area. If there isn't an associated area I just want a blank entry. Right now I am getting a result which shows only the nodes with the asociated area and not the whole thing. I've tried messing about with "Is Null", "Is Not Null" and " " " ", but to no avail.
-
Answer:
What you want is to play with the join properties (you can right click on the join in your query) to include ALL from Sequences. If you google join properties access you can find examples for your version.
Just this guy, y'know at Ask.Metafilter.Com Visit the source
Other answers
desjardins: he needs a left join, not an inner join OP: for the love of God, rename "ID" to "TrainServiceID" everywhere
thelonius
Thanks! Such a simple solution. That has been annoying me for HOURS! Problem is well and truly 100% perfectly solved.
Just this guy, y'know
SELECT Sequences.*, Areas.Area FROM Sequences INNER JOIN Areas ON Sequences.Node = Areas.Node;
desjardins
Thanks, thelonius, I have actually done that in most places, but your point is well made. I'll go and make sure that's the case.
Just this guy, y'know
Related Q & A:
- How To Get Free Ms Point?Best solution by ehow.com
- How to convert sql query to Hibernate Criteria query?Best solution by Stack Overflow
- How to convert SQL query to LINQ query?Best solution by Stack Overflow
- Can I use MS Outlook to check my Yahoo mail?Best solution by Yahoo! Answers
- How to connect php file to ms access?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.