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

Solved How i update table mysql?

Status
Not open for further replies.

Kask

Banned User
Joined
Jan 3, 2008
Messages
376
Reaction score
1
I want update all players to x=*,y=*,z=* with mysql table... any can help me? =)
 
Last edited:
Run it in your MySQL database
SQL

Code:
UPDATE `players` SET `posx` = xxx;
UPDATE `players` SET `posy` = xxx;
UPDATE `players` SET `posz` = x;

rep++ :)
 
Status
Not open for further replies.
Back
Top Bottom