研发埠

标题: 请教关于 select distinct的问题 [打印本页]

作者: 单培娟    时间: 2013-7-11 12:52
标题: 请教关于 select distinct的问题
这是我的数据:  num            voltage       others         date_time 0010852         1000         已打印         2013-4-260010852         3000         已打印         2013-4-26 0010853         2000         已打印         2013-4-260010853         1000         已打印         2013-4-260010854         2000         已打印         2013-4-260010854         6000         已打印         2013-4-260010855         2000         已打印         2013-4-26 0010855         3000         已打印         2013-4-260010855         3000         已打印         2013-4-26 我要的结果:显示num 不同的数据:0010852         4000         已打印         2013-4-260010853         3000         已打印         2013-4-26 0010854         8000         已打印         2013-4-260010855         8000         已打印         2013-4-26我的目的是让以num为地址的数据,只显示一条不重复数据,然后对voltage求和。我用了以下式:mysql = "SELECT DISTINCTnum,voltage,other,date_time FROM [" & itable & "] where numis not null"实际结果:0010852         1000         已打印         2013-4-260010852         3000         已打印         2013-4-26 0010853        2000         已打印         2013-4-260010853         1000         已打印         2013-4-260010854         2000         已打印         2013-4-260010854         6000         已打印         2013-4-260010855         2000         已打印         2013-4-26 0010855        3000         已打印         2013-4-26 后加group by num,但提示'others'不能合计函数。求高手帮帮忙,因为全部数据都要显示的。
作者: 淡写轻描    时间: 2013-7-11 12:58
select num,sum(voltage) asvoltage,others,date_time from table where num is not null group bynum,others,date_time




欢迎光临 研发埠 (http://bbs.yanfabu.com/) Powered by Discuz! X3.2