2
select m.*, c.NAME as CORP_NAME 
from MAIL_LOG as m, CORP as c 
where m.SEND_DATE >= '$term_from' and m.SEND_DATE <= '$term_end' ";

Select DISTINCT `TO_NAME_F_KANA` from MAIL_LOG group by m.SEND_DATE;

TO_NAME_F_KANA我喜欢使用as 参考从第一个查询中获取唯一值。

4

1 回答 1

1

以下查询应该可以解决问题

Select DISTINCT t.`TO_NAME_F_KANA` from 
     (
     select m.*, c.NAME as CORP_NAME 
     from MAIL_LOG as m, CORP as c 
      where 
           m.SEND_DATE >= '$term_from'
                  and
           m.SEND_DATE <= '$term_end'
     ) t
group by t.SEND_DATE;
于 2012-06-27T07:26:09.573 回答