Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'orderForm by dict_sort asc' at line 5
时间: 2023-06-30 19:19:20 浏览: 158
数据库疑难杂症 java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual tha
这个错误提示是说在你的SQL语句中有一个语法错误,具体错误在于你在查询的时候使用了一个非法的表名 "orderForm"。这个表名可能包含一些特殊字符或者是关键字,需要使用反引号 (`) 包裹起来。你可以尝试修改你的SQL语句,将表名改为合法的形式,例如:
```
SELECT * FROM `orderForm` ORDER BY dict_sort ASC
```
这样就可以避免这个错误了。
阅读全文