This data as JSON, CSV (advanced)
pk | planet_int | state | city_id | neighborhood |
---|---|---|---|---|
11 | 1 | MI | Detroit 3 | Downtown |
12 | 1 | MI | Detroit 3 | Greektown |
13 | 1 | MI | Detroit 3 | Corktown |
14 | 1 | MI | Detroit 3 | Mexicantown |
CREATE TABLE facetable ( pk integer primary key, planet_int integer, state text, city_id integer, neighborhood text, FOREIGN KEY ("city_id") REFERENCES [facet_cities](id) )