Text Size: Normal / Large
PostgreSQL
PrevChapter 13. The Query LanguageNext

Updates

You can update existing instances using the update command. Suppose you discover the temperature readings are all off by 2 degrees as of Nov 28, you may update the data as follow:

UPDATE weather
     SET temp_hi = temp_hi - 2,  temp_lo = temp_lo - 2
     WHERE date > '11/28/1994';


PrevHomeNext
Joins Between ClassesUpDeletions
Privacy Policy | Project hosted by our server sponsors. | Designed by tinysofa
Copyright © 1996 – 2009 PostgreSQL Global Development Group