<sql> 和 <include>
<sql>用来封装SQL语句, <include>来调用
代码片段:<sql id="select">SELECT * FROM `body_index`</sql>
<select id="find" resultType="*" resultMap="*"> <include refid="select"/> </select>
xml里面的表现:
本文共 258 字,大约阅读时间需要 1 分钟。
<sql> 和 <include>
<sql>用来封装SQL语句, <include>来调用
代码片段:<sql id="select">SELECT * FROM `body_index`</sql>
<select id="find" resultType="*" resultMap="*"> <include refid="select"/> </select>
xml里面的表现:
转载于:https://www.cnblogs.com/gscq073240/articles/8481459.html