zebra_time DATE, . , - NLS. , zebra_time, zebra_time, .
Try:
select
to_char(next_day(zebra_time, 'mon'), 'MM/DD/YYYY HH12:MI:SS AM'),
from builds
where
zebra_time >= '01-jan-2014'
group by to_char(next_day(zebra_time, 'mon'), 'MM/DD/YYYY HH12:MI:SS AM');
select
trunc(next_day(zebra_time, 'mon')),
from builds
where
zebra_time >= '01-jan-2014'
group by trunc(next_day(zebra_time, 'mon'));
TRUNC .
:
, SO