解决Caused by: java.sql.SQLException: ORA-00933: SQL command not properly ended

是iBATIS.xml这句话出错了  
a.updatedate >= #beginDt#
           a.updatedate >= #endDt#

改成
           and a.updateDate>=#beginDt#
   and a.updateDate<=#endDt#
就好

你可能感兴趣的:(ibatis/mybatis)