Mybatis 中 refid是什么意思
Posted 年少有为
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis 中 refid是什么意思相关的知识,希望对你有一定的参考价值。
1、首先定义一个sql标签,一定要定义唯一id
例:<sql id="Base_Column_List" > name,age </sql>
2、然后通过id引用
<select id="selectAll">
select
<include refid="Base_Column_List" />
from student
</select>
这个<include refid="Base_Column_List" />会自动把上面的代码贴过来
本博文来源于:https://blog.csdn.net/lzh578903779/article/details/71158323/
以上是关于Mybatis 中 refid是什么意思的主要内容,如果未能解决你的问题,请参考以下文章