Skip to content
Advertisement

Data in Oracle apex

If I want to take data for today from 00:00 until currently hour how can I do it ??? I have this table

datetime hourly clientchannel servicename service_count
13_02_2022 9 ***** notification 2

Advertisement

Answer

Presuming that datetime column’s datatype is DATE (should be), then

because


If datetime‘s datatype is VARCHAR2 (bad choice), then you should first convert it to date, applying correct format model and hoping that there’s no garbage in that column:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement