For example i will the value 5000
If you want to add extra credits to all accounts use this query:
For example: If you have 100 Mu Points, after running this query you will have 5100 Mu Points
If you want to add extra credits only to one account use this query:Code:UPDATE MEMB_INFO SET credits = credits + 5000
For example: If you have 100 Mu Points, after running this query you will have 5100 Mu Points
If you want to replace all credits to all accounts use this query:Code:UPDATE MEMB_INFO SET credits = credits + 5000 WHERE memb___id = 'AccountID'
For example: If you have 100 Mu Points, after running this query you will have 5000 Mu Points
If you want to replace all credits only to one account use this query:Code:UPDATE MEMB_INFO SET credits = 5000
For example: If you have 100 Mu Points, after running this query you will have 5000 Mu Points
If you find this GUIDE useful @Thanks buttonCode:UPDATE MEMB_INFO SET credits = 5000 WHERE memb___id = 'AccountID'


Reply With Quote

