Hi there cartodb folks! Just diving into cartodb for the first time here with a python script to toss some data from a mssql server up to a cartodb table. I got that part down, but now I'd like to be able to georeference it with the script instead of having to manually do that in cartodb. The lat and lng fields exist already and are populated (although a quick way to tell a whole table, or rows whose the_geom is null to geocode based on a full address field would be super handy thing I haven't yet managed to figure out either) and I'm trying to tell the_geom to take on those existing lat and lng values and be a point:
UPDATE mytable SET the_geom = ST_SetSRID(ST_MakePoint(lng,lat),4326) WHERE the_geom IS NULL
From this I get:
[u'function st_makepoint(text, text) does not exist']
Any enlightening thoughts? I've dug around enough to see pretty much that exact query being used seemingly without a hitch.
Thanks,
Will