ZelosAvalon
New member
- Messages
- 218
- Points
- 0
- Age
- 34
- Emulator
Hi guys, this is my SQL table, and i want to make an ranking for it, but idk what to do, can anyone help me with this ?
CREATE TABLE IF NOT EXISTS `event_rank` (
`id` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`name` VARCHAR(30) NOT NULL DEFAULT '',
`event_points` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`t_event_points` INT(11) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
i want a ranking like this:
rank:
name (character) already earn X events points
ranking is by character not account!
I would appreciate some help! ty all
May The Force Be With You
CREATE TABLE IF NOT EXISTS `event_rank` (
`id` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`name` VARCHAR(30) NOT NULL DEFAULT '',
`event_points` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`t_event_points` INT(11) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
i want a ranking like this:
rank:
name (character) already earn X events points
ranking is by character not account!
I would appreciate some help! ty all
May The Force Be With You