MyBatis MySQL自增

<!-- MySQL自动生成主键-->
<insert id="insert" useGeneratedKeys="true" keyProperty="id">
INSERT INTO t_car(id,name) VALUES (#{id},#{name})
</insert>
原文地址:https://www.cnblogs.com/java-ty/p/11818229.html