I need help in my SQL. I need to modify this part "19-DECEMBER-2016 11:00" to something like "TODAY 11:00"
The table where i need to get the date and time is in this format "12/19/2016 11:00 AM"
SELECT /*+ FULL MERGE */
a.DATETIME start_time,
a.ENODEB,
a.EUTRANCELL,
a.PERIOD AS Period,
FROM
ALU_EUTRAN.ENB_EUCELL_RRC a
and a.datetime = TO_DATE('19-DECEMBER-2016 11:00', 'DD-MON-YYYY HH24:MI')
I'll appreciate all the help. Thanks in advance.