Spring Boot 2注解使用Mybatis动态SQL

栏目: Java · 发布时间: 5年前

内容简介: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 getDetailIssue(@Param("startDate") String startDate, @Param("endDate")String endDate,

@Param("committer") String[] committer, @Param("type") String[] type,

@Param("project") String[] project);

知识点:

(1)注解写动态SQL,用

关注 码农网 公众号