赞
踩
需求:查询用户名具体负责的项目的名称
已有数据库表如下所示,二者通过项目ID关联
test数据库的user表
test1数据库的project表
需要实现的SQL查询
select user.id,user.name,projectName from test.user left join test1.project on user.`projectId`=project.id;
查询结果
查询结果
实现:核心思想,手动新建Bean与Mapper。
1.自动生成代码model与mapper,包括test.user test1.project
2.新建一个bean命名为UserPro,其属性为上述所需的3个字段
public class UserPro {
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。