sqlSql元素用来定义一个可以复用的SQL 语句段,供其它语句调用。比如:Xml代码 收藏代码 <!-- 复用sql语句 查询student表所有字段 --> <sql id="selectStudentAll"> SELECT ST.STUDENT_ID, ST.STUDENT_NAME, ST.STUDENT_SEX, ST.STUDENT_BIRTHDAY, ST.CLASS_IDFROM STUDENT_TBL ST </sql> 这样,在select的语句中就可以直接引用使用了,将上面select语句改成:Xml代码 收藏代码<!-- 查询学生,根据id --> <select id="getStudent" parameterType="String" resultMap="studentResultMap"> <include refid="selectStudentAll"/>WHERE ST.STUDENT_ID = #{studentID} </select>
sqlSql元素用来定义一个可以复用的SQL 语句段,供其它语句调用。比如:Xml代码 收藏代码<!-- 复用sql语句 查询student表所有字段 --><sql id="selectStudentAll">SELECT ST.STUDENT_ID,ST.STUDENT_NAME,ST.STUDENT_SEX,ST.STUDENT_BIRTHDAY,ST.CLASS_IDFROM STUDENT_TBL ST</sql>这样,在select的语句中就可以直接引用使用了,将上面select语句改成:Xml代码 收藏代码<!-- 查询学生,根据id --><select id="getStudent" parameterType="String" resultMap="studentResultMap"><include refid="selectStudentAll"/>WHERE ST.STUDENT_ID = #{studentID}</select> 标签:语句,Xml,代码,复用,ST,select,STUDENT,SQL,sqlSql From: https://www.cnblogs.com/stevenduxiang/p/18228153