Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. -- $Id$
  2.  
  3. -- This file is the result of an export of the zipcodes table from a Drupal 6 installation
  4. -- with the contributed location module installed and the zipcodes.us.mysql file imported.
  5.  
  6. --
  7. -- Table structure for table `zipcodes`
  8. --
  9.  
  10. CREATE TABLE IF NOT EXISTS `zipcodes` (
  11. `zip` varchar(16) NOT NULL DEFAULT '0',
  12. `city` varchar(30) NOT NULL DEFAULT '',
  13. `state` varchar(30) NOT NULL DEFAULT '',
  14. `latitude` decimal(10,6) NOT NULL DEFAULT '0.000000',
  15. `longitude` decimal(10,6) NOT NULL DEFAULT '0.000000',
  16. `timezone` tinyint(4) NOT NULL DEFAULT '0',
  17. `dst` tinyint(4) NOT NULL DEFAULT '0',
  18. `country` char(3) NOT NULL DEFAULT '',
  19. KEY `pc` (`country`,`zip`),
  20. KEY `zip` (`zip`),
  21. KEY `latitude` (`latitude`),
  22. KEY `longitude` (`longitude`),
  23. KEY `country` (`country`)
  24. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  25.  
  26. --
  27. -- United States of America version.
  28. -- America! Yeah!
  29. -- Dumping data for table `zipcodes`
  30. --
  31.  
  32. INSERT INTO zipcodes VALUES ('00210','Portsmouth','NH','43.005895','-71.013202',-5,1,'USA');
  33. INSERT INTO zipcodes VALUES ('00211','Portsmouth','NH','43.005895','-71.013202',-5,1,'USA');
  34. INSERT INTO zipcodes VALUES ('00212','Portsmouth','NH','43.005895','-71.013202',-5,1,'USA');
  35. INSERT INTO zipcodes VALUES ('00213','Portsmouth','NH','43.005895','-71.013202',-5,1,'USA');
  36. INSERT INTO zipcodes VALUES ('00214','Portsmouth','NH','43.005895','-71.013202',-5,1,'USA');
  37. INSERT INTO zipcodes VALUES ('00215','Portsmouth','NH','43.005895','-71.013202',-5,1,'USA');
  38. INSERT INTO zipcodes VALUES ('00501','Holtsville','NY','40.922326','-72.637078',-5,1,'USA');
  39. INSERT INTO zipcodes VALUES ('00544','Holtsville','NY','40.922326','-72.637078',-5,1,'USA');
  40. INSERT INTO zipcodes VALUES ('00601','Adjuntas','PR','18.180103','-66.749470',-4,0,'USA');
  41. INSERT INTO zipcodes VALUES ('00602','Aguada','PR','18.363285','-67.180240',-4,0,'USA');
  42. INSERT INTO zipcodes VALUES ('00603','Aguadilla','PR','18.448619','-67.134220',-4,0,'USA');
  43. INSERT INTO zipcodes VALUES ('00604','Aguadilla','PR','18.498987','-67.136990',-4,0,'USA');
  44. INSERT INTO zipcodes VALUES ('00605','Aguadilla','PR','18.465162','-67.141486',-4,0,'USA');
  45. INSERT INTO zipcodes VALUES ('00606','Maricao','PR','18.182151','-66.958800',-4,0,'USA');
  46. INSERT INTO zipcodes VALUES ('00607','Aguas Buenas','PR','18.256995','-66.104657',-4,0,'USA');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement