I imported a personal geodatabase into PostgreSQL. For one of my tables, I added a new column. This column is empty and I want to add in/insert values into this column so that all its rows will be populated. When I used:
INSERT INTO district (province_id) VALUES
('13'), ('13'), ('13'), ('13'), ('13'), ('13'), ('12'), ('12'), ('12'), ('12'), ('12'), ('12'), ('12'), ('12'), ('12'), ('19'), ('19');
The result is such that new rows were created, so instead of having 17 rows, i ended up having 34 rows. When I try to use UPDATE...Set...=... Where...., the query ran succesfully however now rows were affected. My question now is: how can I add in the values for each of the rows in the newly created column such that no new rows will be created as a result?
Thanks in advance and any help would be very much appreciated.
Barbaara
province_idvalue? – mu is too short Nov 19 '12 at 7:08