[Err] 1064 - 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 'DATABASES test02' at line 1
时间: 2023-07-08 19:52:00 浏览: 73
mysql报错:MySQL server version for the right syntax to use near type=InnoDB的解决方法
5星 · 资源好评率100%
这是一个 SQL 语法错误,可能是因为你在执行 SQL 语句时使用了错误的语法。请检查你的 SQL 语句并确保它们符合 MySQL 的语法规则。
另外,你可能需要在 SQL 语句的最前面添加 `USE` 关键字来指定要使用的数据库,例如:
```
USE test02;
```
然后再执行你的 SQL 语句。
阅读全文