> 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 = #;


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to