MybatisPlus多表关联查询

MP多表关联查询

我们关联user表和product表,两个表如下:

  • user表

    MybatisPlus多表关联查询_第1张图片

  • product表

    MybatisPlus多表关联查询_第2张图片

现在我们要关联两个表查询出product的全部信息已经对应的用户名字

先写sql语句

MybatisPlus多表关联查询_第3张图片

然后创建vo

package com.hyn.mybatisplus.entity;

import lombok.Data;

@Data
public class ProductVo {
    private Integer category;
    private Integer count;
    private String description;
    private Integer userId;
    private String userName;
}

usermapper创建新方法和JPA类似

package com.hyn.mybatisplus.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hyn.mybatisplus.entity.ProductVo;
import com.hyn.mybatisplus.entity.User;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;

import java.util.List;

@Repository
@Mapper
public interface UserMapper extends BaseMapper {
    @Select("select p.*,u.name userName from user u ,product p where u.id=p.user_id and u.id = #{id}")
    List productList(Integer id);
}

最后测试一下

@Test
void product(){
    mapper.productList(13).forEach(System.out::println);
}

image-20210831112622425

​ 可见关联表查询以及封装数据成功,如果vo和表里的字段不对应可以在sql语句中改别名。

你可能感兴趣的:(mybatis)