• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Sms Shop

Slimek

New Member
Joined
Dec 22, 2009
Messages
197
Reaction score
0
I have a question what is the command to the database to add all accounts 500 point to sms shop. UPDATE `players` SET `premium_points` = `premium_points`+500; not working . Error: 1054 - Unknown column 'premium_points' in 'field list'.

I Give Rep++
 
There isn't in table "players" column "premium_points"
Try this:
Code:
UPDATE accounts SET premium_points = premium_points + 500
 
Back
Top