Springboot2注解使用Mybatis动态SQL

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,用

你可能感兴趣的:(Springboot2注解使用Mybatis动态SQL)