mybatis中refid是什么意思

xiaoxiao2021-02-27  497

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://www.6miu.com/read-1240.html

最新回复(0)