/joined.sql Secret
Created
May 1, 2023 14:20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create or replace table joined as | |
select | |
location_history.* | |
, uk_geo.county_name | |
from location_history, uk_geo | |
where ST_Within(location_history.geo_location, uk_geo.county_geo); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment