From 0374a64a8bbb8e239ca2bb3f81af8722e98d5b09 Mon Sep 17 00:00:00 2001 From: andrewxhill Date: Wed, 20 Apr 2016 15:43:25 -0400 Subject: [PATCH] remove quotes --- doc/methods.md | 136 ++++++++++++++++++++++++------------------------- 1 file changed, 68 insertions(+), 68 deletions(-) diff --git a/doc/methods.md b/doc/methods.md index 39f87ac..c61ac38 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')) ```