sql如何一对多联合查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql如何一对多联合查询相关的知识,希望对你有一定的参考价值。
有两个表,第一个表Table1字段有ID,NewsID,NewsTitle.第二个表Table2字段有ID,NewsID,NewsTag要查询表一中NewsTitle对应的表二中NewsTag
注意:NewsTag可能是多个,但只对应一个NewsID.
要输出的结果是:只显示一个NewsTitle,显示全部表二中所有对应该NewsID的NewsTag.
sql="select time,content,b.classname from record a left join class b on a.class_id=b.id"
下面是在ASP页面用来显示的:(创建那个与数据连接的对象不用写了吧)
<TABLE>
<%
set rs=conn.execute(sql) 执行上面的语句
do while not rs.eof
%>
<TR>
<TD><%=rs("time")%></TD>
<TD><%=rs("content")%></TD>
<TD><%=rs("classname ")%></TD>
</TR>
<%
rs.movenext
loop
%>
</TABLE>
如果你是oracle中:
select 人名,sum(sale) from (select a.id,a.sale,b.人名 from s a,p b where a.who=b.id(+)) group by 人名
在sql 和access:
select 人名,sum(sale) from (select a.id,a.sale,b.人名 from s a left join p b on a.who=b.id(+)) group by 人名
其中 a,b 是表s,表p的别名 参考技术B SELECT t1.NewsTitle,t2.NewsTag FROM table1 t1 , table2 t2
WHERE t1.NewsID=t2.NewsID
ORDER BY t1.NewsTitle
至于希望怎么显示在页面上,比如隐藏多余的newstitle在页面上控制就行啊本回答被提问者采纳 参考技术C 有两个表,第一个表Table1字段有ID,NewsID,NewsTitle.第二个表Table2字段有ID,NewsID,NewsTag要查询表一中NewsTitle对应的表二中NewsTag
注意:NewsTag可能是多个,但只对应一个NewsID.
要输出的结果是:只显示一个NewsTitle,显示全部表二中所有对应该NewsID的NewsTag.
select 'NewsTitle' as 'NewsTitle',b.NewsTag
from table1 a,table2 b
where a.NewsTitle=b.NewsTag
order by b.NewsTag 参考技术D SELECT t1.NewsTitle,t2.NewsTag FROM table1 t1 , table2 t2
WHERE t1.NewsID=t2.NewsID
ORDER BY t1.NewsTitle 第5个回答 2008-01-24 select table1.NewTitle ,table2.[NewID] from table1 join
table2 on table1.[ID]=table2.[ID]
MyBatis 一对多查询
MyBatis一对多查询:
有联合查询和嵌套查询
联合查询是几个表联合查询,只查询一次,通过在resultMap中配置collection节点配置一对多的类即可;
嵌套查询是先查一个表,根据这个表中的结果的外键id,再去另一个表中查询数据,也是通过collection,但是另一个表的查询通过selec节点配置
1.1 联合查询
<resultMap type="Post" id="postResultMap">
<id column="id" property="id"/>
<collection column="id" property="commentList" javaType="ArrayList" ofType="Comment">
</collection>
</resultMap>
<select id="selectPostById" parameterType="int" resultMap="postResultMap">
select * from post left join comment on post.id = comment.post_id where post.id = #{id}
</select>
console:
==> Preparing: select * from post left join comment on post.id = comment.post_id where post.id = ? ==> Parameters: 1(Integer) <== Total: 3 [email protected]
1.2 嵌套查询
<resultMap type="Post" id="postResultMap">
<id column="id" property="id"/>
<collection column="id" property="commentList" javaType="ArrayList" ofType="Comment"
select="com.roxy.mybatis.mapper.CommentMapper.selectCommentByPostId">
</collection>
</resultMap>
<select id="selectPostById" parameterType="int" resultMap="postResultMap">
select * from post where id = #{id}
</select>
<select id="selectCommentByPostId" parameterType="int" resultMap="commentResultMap">
select * from comment where post_id = #{postId}
</select>
console:
==> Preparing: select * from post where id = ?
==> Parameters: 1(Integer)
<== Total: 1
==> Preparing: select * from comment where post_id = ?
==> Parameters: 1(Integer)
<== Total: 3
[email protected]
以上是关于sql如何一对多联合查询的主要内容,如果未能解决你的问题,请参考以下文章