摘要: 1、mybatis实际上并不是pojo和数据库的字段的对应,而是pojo和sql语句的对应。 两个表通过相同的主键来查询 (1)内连接查询 select * from tb_order o,tb_user u where o.user_id = u.id; 查询tb_order和tb_user两个表 阅读全文
posted @ 2018-01-24 18:35 张小铁 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1、两个表通过相同的主键来查询 (1)内连接查询 select * from tb_order o,tb_user u where o.user_id = u.id; 查询tb_order和tb_user两个表中id相等的信息。 (2)外链接查询 select * from tb_order o L 阅读全文
posted @ 2018-01-24 17:57 张小铁 阅读(114) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-01-24 15:18 张小铁 阅读(10) 评论(0) 推荐(0) 编辑