INSERT INTO WordAchive ( wordAchiveId, uid, pointCaseType, wordsId, score, accuracy, fluent, integrity, content, created , areaid )
Values ( #{wordAchiveId}, #{uid}, #{pointCaseType}, #{wordsId}, #{score}, #{accuracy}, #{fluent}, #{integrity}, #{content},current_timestamp ,#{areaid} )
INSERT INTO WordAchive ( uid, pointCaseType, wordsId, score, accuracy, fluent, integrity, content, created , areaid )
Values ( #{uid}, #{pointCaseType}, #{wordsId}, #{score}, #{accuracy}, #{fluent}, #{integrity}, #{content},#{created} ,#{areaid} )
UPDATE WordAchive SET
wordAchiveId = #{wordAchiveId}, uid = #{uid}, pointCaseType = #{pointCaseType}, wordsId = #{wordsId}, score = #{score}, accuracy = #{accuracy}, fluent = #{fluent}, integrity = #{integrity}, content = #{content}, created = #{created} , areaid = #{areaid}
where wordAchiveId=#{wordAchiveId}