内容简介:1、简单SQL使用//从***数据表获取统计数据@Select("select count(*) from issues where issue_type = #{type}")
1、简单 SQL 使用
//从***数据表获取统计数据
@Select("select count(*) from issues where issue_type = #{type}")
String getIssueCount(String type);
2、动态SQL使用
//获取时间段内issue详细信息(可根据项目名、开发者名、问题类型获取)
@Select({""})
List
@Param("committer") String[] committer, @Param("type") String[] type,
@Param("project") String[] project);
知识点:
(1)注解写动态SQL,用
关注 码农网 公众号
版权所有,保留一切权利!© 2018-2024 码农网
粤ICP备17054400号-3