错误1:([Err] 1064 - You have an error in your SQL syntax;)MySQL关键字冲突
[SQL]
insert into
order(orde_id,orde_book_id,orde_user_id,orde_number,orde_book_amount,orde_status,orde_price)
values(2,13,1,"234",2,0,45.00)
[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 'order (orde_id,orde_book_id,orde_user_id,orde_number,orde_book_amount,orde_statu' at line 2
原因:order为mysql的关键字,不能使用此字段;
解决办法:将order修改为orders,或者使用其他字段代替。
错误2:### Error querying database. Cause: java.sql.SQLException: Operand should contain 1 column(s)
原因:主要发生在含有子查询的查询过程中,查询结果是父子查询数据对应不上了
解决办法:检查对应的select子查询语句并修改