You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
475 B
15 lines
475 B
2 months ago
|
const pool = require('../db');
|
||
|
|
||
|
async function getRanking(req, res) {
|
||
|
try {
|
||
|
const connection = await pool.getConnection();
|
||
|
const [ranking] = await connection.query('SELECT student_name, student_id, score, call_count FROM students ORDER BY score DESC');
|
||
|
connection.release();
|
||
|
res.send({ ranking });
|
||
|
} catch (error) {
|
||
|
res.status(500).send({ error: '无法获取排名' });
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = { getRanking };
|