From b34b628c90bcb24049c33f3d74950d8e0e3518f7 Mon Sep 17 00:00:00 2001 From: andrewxhill Date: Wed, 20 Apr 2016 15:45:54 -0400 Subject: [PATCH] remove double and single quotes from table --- doc/methods.md | 86 +++++++++++++++++++++++++------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/doc/methods.md b/doc/methods.md index c61ac38..21fd13a 100644 --- a/doc/methods.md +++ b/doc/methods.md @@ -115,13 +115,13 @@ type | the data type (text, number, boolean) Add a Measure to an empty column based on point locations in your table ```SQL -UPDATE tablename SET local_male_population = OBS_GetMeasure(the_geom, 'us.census.acs.B08134006') -> 'value' +UPDATE tablename SET local_male_population = OBS_GetMeasure(the_geom, '"us.census.acs".B08134006') -> 'value' ``` Get a measure at a single point location ```SQL -SELECT * FROM json_each(OBS_GetMeasure(CDB_LatLng(40.7, -73.9), 'us.census.acs.B08134006')) +SELECT * FROM json_each(OBS_GetMeasure(CDB_LatLng(40.7, -73.9), '"us.census.acs".B08134006')) ```