1 | изначальная версия редактировать | |
вот так както
create temp table t1 as select distinct substr(dstchannel,1,locate('-',dstchannel)) as trunk from cdr;
create temp table t2 as select distinct substr(dstchannel,1,locate('-',dstchannel)) as trunk from cdr where calldate>date_sub(now(),interval 1 month);
select * from t1 left join t2 on t1.trunk=t2.trunk where t2.trunk is null;
в mysql. естественно, не выдаст тех кто не звонил НИКОГДА. тут уж сами. ну или аналогично из таблички sip вместо t1.
2 | No.2 Revision редактировать |
вот так както
create temp table t1 as select distinct substr(dstchannel,1,locate('-',dstchannel)) as trunk from cdr;
create temp table t2 as select distinct substr(dstchannel,1,locate('-',dstchannel)) as trunk from cdr where calldate>date_sub(now(),interval 1 month);
select * from t1 left join t2 on t1.trunk=t2.trunk where t2.trunk is null;
в mysql. естественно, не выдаст тех кто не звонил НИКОГДА. тут уж сами. ну или аналогично из таблички sip вместо t1.
Проект компании "АТС Дизайн"
Asterisk® и Digium® являются зарегистрированными торговыми марками компании
Digium, Inc., США.
IP АТС Asterisk распространяется под лицензией
GNU GPL.