Problemas con horas..
Hola Amig@s! tengo un inconveniente con un campo date de mi tabla xxx, en mi consulta por SQL*plus me trae la fecha mas las horas, pero las horas estan 00:00:00 (asi yo quiero)
SQL> /
HORA VL_TEMP_MINIMA VL_TEMP_MEDIA
------------------- -------------- -------------
1993-10-17 00:00:00 22,6 25,9
pero en mi visor de JDeveloper me trae otra hora 01:00:00
1993-10-17 01:00:00.0 22.6 25.9
xq puede ocurrir esto??
yo necesito que todas la horas para las diferentes datas esten en 00:00:00
si alguien me puede ayudar agradeceré infinitamente.
SQL> /
HORA VL_TEMP_MINIMA VL_TEMP_MEDIA
------------------- -------------- -------------
1993-10-17 00:00:00 22,6 25,9
pero en mi visor de JDeveloper me trae otra hora 01:00:00
1993-10-17 01:00:00.0 22.6 25.9
xq puede ocurrir esto??
yo necesito que todas la horas para las diferentes datas esten en 00:00:00
si alguien me puede ayudar agradeceré infinitamente.
Puede emplear una mascara y se quita el problema
to_char(variable, 'dd' - 'MM' - 'YYYYY'
to_char(variable, 'dd' - 'MM' - 'YYYYY'
