lizhen-home

<sql>用来封装SQL语句,

<include>用来调用<sql>封装的语句

 代码片段:

<sql id="select">

SELECT * FROM `body_index`
</sql>

<select id="find" resultType="*" resultMap="*">
        <include refid="select"/>
  </select>

分类:

技术点:

相关文章:

  • 2021-12-18
  • 2022-01-07
  • 2021-04-30
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2022-12-23
  • 2021-12-09
猜你喜欢
  • 2022-01-20
  • 2022-02-15
  • 2021-11-27
相关资源
相似解决方案