Re: Zip Code Proximity search
Here's a code snippet that gives all zip codes within a certain distance of a provided zip code. It probably makes sense to put the formula into a function:
SELECT a.zip_zip AS zip
FROM zip a,
zip b
WHERE (2*3956*ASIN( (SQRT( POWER(SIN(((a.zip_lat_rad-b.zip_lat_rad))/2),2) +
COS(b.zip_lat_rad) * COS(a.zip_lat_rad) *
POWER(SIN(((abs(a.zip_long_rad)-abs(b.zip_long_rad)))/2),2) )) ) )
< 11 -- provide distance+1 here
AND b.zip_zip = '08831'
Hope this helps.
-T
Subject
Views
Written By
Posted
29307
October 19, 2004 06:04AM
11078
October 19, 2004 07:55AM
9539
October 19, 2004 11:14AM
10527
October 21, 2004 09:28AM
9412
October 19, 2004 06:59PM
7870
October 20, 2004 07:39AM
7862
October 21, 2004 09:10AM
9138
October 22, 2004 07:17AM
7091
October 23, 2004 02:48AM
6477
October 23, 2004 03:09AM
6622
October 23, 2004 03:12AM
6475
October 23, 2004 02:59PM
8295
October 24, 2004 12:34PM
5766
October 24, 2004 01:31PM
13488
October 21, 2005 10:21AM
7513
October 24, 2005 05:07PM
5815
January 28, 2006 05:24AM
5351
March 02, 2006 04:24PM
7452
October 09, 2007 09:28AM
5973
December 06, 2005 05:34AM
7294
December 06, 2005 06:36AM
5529
December 24, 2005 01:10PM
9184
December 26, 2005 03:49PM
5747
October 09, 2007 09:36AM
7421
December 26, 2005 03:51PM
14592
December 26, 2005 04:21PM
16395
January 20, 2006 10:26AM
7802
January 11, 2006 06:37AM
10734
February 26, 2006 05:31PM
16180
March 02, 2006 05:23PM
5742
May 02, 2006 03:09PM
8346
May 03, 2006 08:59AM
8902
June 06, 2006 04:09AM
29779
December 13, 2007 04:10PM
5834
August 15, 2008 01:52AM
6412
April 05, 2006 02:59PM
4955
May 02, 2006 03:22PM
Re: Zip Code Proximity search
5981
May 05, 2006 09:44AM
15011
June 25, 2006 09:32PM
5769
August 30, 2006 12:54PM
6276
July 14, 2007 01:09AM
7865
November 03, 2006 10:25AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.