问题描述:
表为: table1
里面字段为: id test1 test2 test3 test4
内容为: 1 百度 baidu 2006-08-01 admin
2 网易 163 2006-08-03 user
3 雅虎 .yahoo 2006-08-05 admin
4 百度 baidu 2006-08-08 user
set rs=conn.execute("select distinct test1 from table")
do while not rs.eof
response.write rs("test1")
rs.movenext
loop
这样我就得出了过滤结果:
百度
网易
雅虎
但如果我想把 test2 test3 test4字段也同时显示出来的话,我该如何做呢?
set rs=conn.execute("select distinct test1,test2,test3,test4 from table1"
以上不行的.
但如果用以下方法显示觉得也不科学.
set rs=conn.execute("select distinct test1 from table")
do while not rs.eof
set rs2=conn.execute("select*from table1 where test1 = "&rs("test1"))
response.write rs("test1")
respones.write rs2("test2")
response.write rs2("test3")
response.write rs2("test4")
rs.movenext
loop
能否有更好的方法呢?谢谢谢谢谢谢!
解析:
楼主用distinct肯定达不到所需效果。
可以用group by 分组,不过因为其他字段有重复值,只能让其他字段取一个值了
sql="select test1,max(test2) as test2,max(test3) as test3,max(test4) as test4 from table1 group by test1"
SQL过滤重复记录有两种办法:
通过SQL结构化查询语言来实现,在Select后面加上关键字DISTINCT,意思就是查询行无重复,注意DISTINCT关键字是针对行,不是某一列,如果想得到某一列不重复记录,那就SELECT DISTINCT后面只放一个字段。
通过存储过程,过滤重复记录,存储过程逐条查询,比对之前的记录,如果有重复就跳到下一条,如果不重复游标继续。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)