问题描述:
表为: 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"
DISTINCT 关键字可从 SELECT 语句的结果中消除重复的行。如果没有指定 DISTINCT,将返回所有行,包括重复的行。例如,如果选择 ProductInventory 中的所有产品 ID 时没有使用 DISTINCT,将返回 1069 行。\x0d\x0a\x0d\x0a如果使用了 DISTINCT,就可以消除重复的行,只查看唯一的产品 ID:\x0d\x0a \x0d\x0aUSE AdventureWorks\x0d\x0aGO\x0d\x0aSELECT DISTINCT ProductID\x0d\x0aFROM Production.ProductInventory\x0d\x0a\x0d\x0a此查询将返回 432 行。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)