mysql increment value by 1 in update

Solutions on MaxInterview for mysql increment value by 1 in update by the best coders in the world

showing results for - "mysql increment value by 1 in update"
Niclas
10 Nov 2017
1mysql_query("
2    UPDATE member_profile 
3    SET points = points + 1
4    WHERE user_id = '".$userid."'
5");
6