louyaoluan 发表于 2018-9-28 06:43:06

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]
查看完整版本: MYSQL成绩排名