| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 601 人关注过本帖
标题:[求助]如何实现这样的查询结果?
只看楼主 加入收藏
xinzheng
Rank: 1
等 级:新手上路
帖 子:193
专家分:0
注 册:2007-7-22
收藏
 问题点数:0 回复次数:2 
[求助]如何实现这样的查询结果?
表table1
id tm
1001 aa
1001 bb
1001 cc
1005 aa
1005 bb
1005 cc
1005 dd

要求查询结果为
id tm
1001 aa,bb,cc
1002 aa,bb,cc,dd

请知道的赐教
搜索更多相关主题的帖子: 结果 查询 
2007-09-11 17:18
hmhz
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:30
帖 子:1890
专家分:503
注 册:2006-12-17
收藏
得分:0 

<%
set rs=server.createobject("adodb.recordset")
rs.open "select id from table1 order by id Asc",conn,1,1

if not(rs.eof and rs.bof) then
response.write"共<font color=""red"">"&rs.recordcount&"</font>条新"

set rs1=server.createobject("adodb.recordset")
rs1.open "select count(Id),id from table1 group by id",conn,1,1
do while not rs1.eof
set rs2=server.createobject("adodb.recordset")
rs2.open "select id from table1 and UserId='"&rs1("id")&"'",conn,1,1
if rs2.recordcount=1 then B="①"
if rs2.recordcount=2 then B="②"
if rs2.recordcount=3 then B="③"
if rs2.recordcount=4 then B="④"
if rs2.recordcount=5 then B="⑤"
if rs2.recordcount=6 then B="⑥"
if rs2.recordcount=7 then B="⑦"
if rs2.recordcount=8 then B="⑧"
if rs2.recordcount=9 then B="⑨"
if rs2.recordcount=10 then B="⑩"
response.write"[<font color=""green"">"&rs1("Id")&"</font><font color=""red"">"&B&"</font>]"
rs2.close
set rs2=nothing
rs1.movenext
loop
rs1.close
set rs1=nothing
else
response.write"<span disabled>(暂无)</span>"
end if
rs.close
set rs=nothing
%>

[此贴子已经被作者于2007-9-12 8:27:55编辑过]


[编程论坛] ASP超级群:49158383  敲门暗号:ASP编程
龍艺博客 http://www.
2007-09-11 17:42
论坛元老
Rank: 1
等 级:新手上路
帖 子:812
专家分:0
注 册:2008-3-31
收藏
得分:0 
不错,值得学习
2008-04-02 17:27
快速回复:[求助]如何实现这样的查询结果?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.038496 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved