nodejs查询 mysql 倒序查询
时间: 2023-07-22 15:09:25 浏览: 99
nodejs 操作mysql 查询
3星 · 编辑精心推荐
使用 MySQL 的 ORDER BY 关键字可以对查询结果进行排序,通过将 ORDER BY 关键字与 DESC 关键字一起使用,可以实现倒序排序。在 Node.js 中使用 MySQL 查询并进行倒序排序的代码示例如下:
```javascript
const mysql = require('mysql');
const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'password',
database: 'mydatabase'
});
connection.connect();
const sql = 'SELECT * FROM mytable ORDER BY id DESC';
connection.query(sql, (error, results, fields) => {
if (error) throw error;
console.log(results);
});
connection.end();
```
在上面的代码中,我们使用了 `ORDER BY id DESC` 子句对查询结果按照 id 字段进行倒序排序。如果要按照其他字段进行倒序排序,只需要将 id 替换为相应的字段名即可。
阅读全文