How to View Player stats in MySQL?
#1

Hey How do I go through all the players stats in the database? PHPMyAdmin is what i'm using right now but can someone just tell me how to go through the information and edit it? thanks guys!
Reply
#2

I didn't get, are you trying to edit the information in PhpMyAdmin or you want to edit information ingame ?
Reply
#3

Use queries to select the information you want, then highlight it and depending on the version you are using you should be able to edit it, otherwise use UPDATE.
Код:
UPDATE `Table` SET `column` = value WHERE `Username` = `Username`;
or to select

Код:
SELECT * FROM `Table` WHERE `Username`;
That is using a wildcard, if you want to use it without that's fine just enter the column name.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)