need help about database query builder |
e.g
table: points userId | totalPoints 1 | 1000 2 | 500 3 | 2000 .................... ........... so , i have a 20 to 30 sets of raw data[userId/totalPoints] that i want to update points table. condition: 1. if raw data [total points] is greater then original value that presents in database , then i need to update points table data with raw data . 2. if raw data [total points] is less then original value that presents in database , then i raw data (totalpoints) will be added with original value present in database. so, how can i write database query for this problem?? Thanks for help.
Try soemthing like that:
Code: UPDATE points
If you are:
Code: $newTotalPoints = 123456; |
Welcome Guest, Not a member yet? Register Sign In |