PDA

View Full Version : Adding a 1 to a number in MySQL ?


Guy G
12-29-2004, 07:32 PM
i want to add '1' each time a user hits a button. now the table already uses an auto_inrement so i cant use another one for it.
how than do i add '1' to a number in a SQL field?

Paul M
12-29-2004, 08:18 PM
UPDATE table SET field = field+1 ;