[postgis-users] Postgres-Help

David Blasby dblasby at refractions.net
Thu Jul 17 11:12:35 PDT 2003


Swaminathan, Gayathri wrote:

> For ex:I have a parcels table in postgresql to which I will have to
> alter/update the geom information.

Just use standard SQL:

INSERT INTO <table> VALUES (23, 'POINT(0 0)');

UPDATE <table> set the_geom = 'POINT(0 0)' WHERE id = 23;

dave




More information about the postgis-users mailing list