PDA

View Full Version : Adding


NeoPuma
04-30-2005, 09:42 PM
Hey there,
How could I add 30 onto 'PayDuration' where `Account` = 'neopian', in the fastest possible way using mysql queries.

Thanks

Tangerine Dream
04-30-2005, 10:31 PM
Hi, if you need 'PayDuration' column value set to 30:


UPDATE yourtable SET PayDuration= 30 WHERE `Account` = 'neopian';