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?
1 Answer 1
I would try using a LEFT JOIN.
SELECT
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
-
Then there's the mighty Mapbasic Createlines command gis.stackexchange.com/q/13214/14242Andrew Tice– Andrew Tice2015年11月09日 05:36:28 +00:00Commented Nov 9, 2015 at 5:36