mybatis 注解形式的动态sql妙用

根据字段名和编码进行查询

@Select({
     ""}
		   )
	Page<User> getUsersByParam(@Param("code") int code,@Param("type") String type);

展示结果

下面的接口在数据库执行的语句是:select * from user where major=-10000000
mybatis 注解形式的动态sql妙用_第1张图片

你可能感兴趣的:(数据库调优,mybatis,sql)