如何进行如下查询:
select myvalue, count() as freq from mytable group by myvalue;
但是在哪里对列中的freq
值求和weight
而不是将每一行都计为 1?
我正在使用 MySQL 5.1。
如何进行如下查询:
select myvalue, count() as freq from mytable group by myvalue;
但是在哪里对列中的freq
值求和weight
而不是将每一行都计为 1?
我正在使用 MySQL 5.1。