Skip to content

Instantly share code, notes, and snippets.

@afonsoaugusto
Created October 24, 2017 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afonsoaugusto/2a3e27fbb3c6cfbd43923990fe80a8d8 to your computer and use it in GitHub Desktop.
Save afonsoaugusto/2a3e27fbb3c6cfbd43923990fe80a8d8 to your computer and use it in GitHub Desktop.
mysql> show tables;
+-------------------+
| Tables_in_geo_loc |
+-------------------+
| geometry_columns |
| points_new |
| spatial_ref_sys |
+-------------------+
3 rows in set (0,05 sec)
mysql> desc points_new;
+----------+--------------+-----+----+-------+--------------+
|Field | Type | Null| Key|Default|Extra |
+----------+--------------+-----+----+-------+--------------+
|OGR_FID | int(11) | NO | PRI|NULL |auto_increment|
|SHAPE | geometry | NO | MUL|NULL | |
|zcta5ce10 | varchar(5) | YES | |NULL | |
|geoid10 | varchar(5) | YES | |NULL | |
|classfp10 | varchar(2) | YES | |NULL | |
|mtfcc10 | varchar(5) | YES | |NULL | |
|funcstat10| varchar(1) | YES | |NULL | |
|aland10 | decimal(14,0)| YES | |NULL | |
|awater10 | decimal(14,0)| YES | |NULL | |
|intptlat10| varchar(11) | YES | |NULL | |
|intptlon10| varchar(12) | YES | |NULL | |
+----------+--------------+-----+----+-------+--------------+
11 rows in set (0,00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment