“You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax error”
原因:数据库表中有个名为order的表名
解决办法:
@Table(name = "`order`")
public class order {
}
原因:数据库表中有个名为order的表名
解决办法:
@Table(name = "`order`")
public class order {
}