ava.sql.SQLException: 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 '201' at line 1 Query: drop table 201 Parameters: []
时间: 2023-08-25 22:17:03 浏览: 130
It seems that you are trying to drop a table named "201", but the SQL engine is throwing an error due to a syntax issue.
In MySQL, table names cannot start with numbers, so this could be the root cause of the error. Try renaming the table with a name that starts with a letter, and then execute the drop table command again.
Also, make sure that there are no other syntax issues in the SQL statement, such as missing semicolons or incorrect command usage.
阅读全文