函数 <database_name>。 TOP 不存在

FUNCTION <database_name>. TOP does not exist

当我使用 String sql = "SELECT TOP(1) order_id FROMordersORDER BY order_id DESC; ";

时显示此消息

数据在 table 中更新,但在 String sql = "SELECT TOP(1) order_id FROM 订单 ORDER BY order_id DESC; ";

之后

下一行代码不是 运行,我的意思是 rs.next() 语句...

我在 JAVA 中编写了我的代码并通过 WAMP 服务器连接 MySQL。

MySQL不支持TOP功能。您应该使用 LIMIT,例如:

SELECT order_id FROM orders ORDER BY order_id DESC LIMIT 1;