Add location filtering based on ZIP + Country

This commit is contained in:
2025-09-01 13:31:06 -07:00
parent fa35b084bc
commit 72fb4f2536
4 changed files with 134 additions and 4 deletions
+1 -4
View File
@@ -206,10 +206,7 @@ FIELDS TERMINATED BY '\t'
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
CREATE INDEX idx_country_code ON PostalCodes(CountryCode);
CREATE INDEX idx_postal_code ON PostalCodes(PostalCode);
CREATE INDEX idx_latitude ON PostalCodes(Latitude);
CREATE INDEX idx_longitude ON PostalCodes(Longitude);
CREATE INDEX idx_postal_country ON PostalCodes (City, PostalCode, CountryCode, Latitude, Longitude);
-- Application Section