asp+sql如何在多表联合查询中,重复的记录只输出一条
数据表x字段如下IDoderid4123312321231123数据表y字段如下4123<%sql="selectx.ID,x.orderid,y.IDfromx,ywh...
数据表x字段如下
ID oderid
4 123
3 123
2 123
1 123
数据表y字段如下
4 123
<%sql="select x.ID,x.orderid,y.ID from x,y where x.orderid=y.orderid"
rs.open sql,conn,1,1%>
do while not rs.eof
<%=rs(1)%><br>
rs.movenext
loop
输出结果为
123
123
123
123
正确输出结果应该是
123
求高手解答!!!!!!!!!!~!~!~!~!~ 展开
ID oderid
4 123
3 123
2 123
1 123
数据表y字段如下
4 123
<%sql="select x.ID,x.orderid,y.ID from x,y where x.orderid=y.orderid"
rs.open sql,conn,1,1%>
do while not rs.eof
<%=rs(1)%><br>
rs.movenext
loop
输出结果为
123
123
123
123
正确输出结果应该是
123
求高手解答!!!!!!!!!!~!~!~!~!~ 展开
3个回答
展开全部
sql="select x.ID,x.orderid,y.ID from x,y where id in (select min(id) from x,y group by oderid) and x.orderid=y.orderid"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询