On 1/23/06, Figo's <figo_sistemas(at)yahoo(dot)es> wrote:
> El select q uso es:
>
> select extract(month from ob_fecha), count(*)
> from t_ob_log
> where ob_telefono like '58412%'
> group by 1, ob_fecha
> order by ob_fecha
>
>
y que sacas ordenando por fecha? ordenalo por mes:
select extract(month from ob_fecha), count(*)
from t_ob_log
where ob_telefono like '58412%'
group by 1
order by 1
--
Atentamente,
Jaime Casanova
(DBA: DataBase Aniquilator ;)