标签:sel column 引用 col 标签 rom from 通过 ase
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" />会自动把上面的代码贴过来
标签:sel column 引用 col 标签 rom from 通过 ase
原文地址:http://www.cnblogs.com/cyyh/p/7477954.html