表的连接查询
Posted Make a commitment to your own
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表的连接查询相关的知识,希望对你有一定的参考价值。
想要在展示用户数据(from identification)表的同时连接另一个表(department),并且获取对应院系的表名
解决方法:
修改sql语句的写法
通过identification里的d_id与department里d_id的链接名相等获取这个值去实现表之间的链接。详细写法见代码处
1 sql = "select identification.*,department.d_name from identification,department where identification.bzm=? and identification.d_id=department.d_id ";
问题解决成功。(所属院系名称便为表的链接查询结果)
以上是关于表的连接查询的主要内容,如果未能解决你的问题,请参考以下文章