0

I am trying to create a map of U.S. counties that shows migration patterns.

I have a table of all US counties and a table that has migration information.

Some counties do not have migration, hence when I match the counties by fips in the two data sets the counties that do not have migration are missing in the map.

How can I keep all the counties (in first table) even if not included in second table?

PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
asked Nov 8, 2015 at 0:57

1 Answer 1

2

I would try using a LEFT JOIN.

SELECT
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key

Visual Representation of SQL Statemets

MapInfo Specific Tutorial on Joins

answered Nov 8, 2015 at 1:56
1

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.