corresponds to your MySQL server version for the right syntax to use near报错问题
产生这样的问题,主要时由于mysql的关键字与你的项命名冲突,
解决办法
在写发生项冲突的sql时,需要加上``
##示例
// 出现问题的sql
insert into album
(title,accounts,photourl,time,describe)
valve ('标题1','账号1','路径1','时间1','描述1')
```在这里插入图片描述
```javascript
// 修正的sql
insert into album
(title,accounts,photourl,time,`describe`)
valve ('标题1','账号1','路径1','时间1','描述1')