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')) ```