MYSQL成绩排名
mysql> show create table scores\G *************************** 1. row ***************************Table: scores
Create Table: CREATE TABLE `scores` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`score` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `k_s` (`score`)
) ENGINE=MyISAM AUTO_INCREMENT=1000001 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC
页:
[1]