RE: UPDATE command, adding to exisiting record

2001-12-28 Thread Chris Bolt
> I am looking to update a record in a table, but take the > exsisting value and adding the new value to it... > > I.e. > > Exsisting record = 150, new record being inputed = 250 for a > total of 400 to be entered into the database. UPDATE table SET row = row + 250 WHERE id = #; ---

UPDATE command, adding to exisiting record

2001-12-28 Thread Todd Williamsen
I am looking to update a record in a table, but take the exsisting value and adding the new value to it... I.e. Exsisting record = 150, new record being inputed = 250 for a total of 400 to be entered into the database. I have looked at the man pages on this but all it gives is static numbers,