• 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!

ERROR

jwthbb

New Member
Joined
Apr 22, 2013
Messages
37
Reaction score
0
can somebody help me with this.

UPDATE `players` SET `id` = '6' WHERE `players`.`id` = 1

where and how to
 
the player id is a primary key which is constrained by several foreign keys. You are just looking for a bunch of trouble trying to change it.
 
UPDATE `players` SET `group_id` = 6 WHERE `id` = 1
it's group_id for player access
 
Back
Top