Hi there I need to create a script to highlighting any bookings recorded for a given date by entering the date from the keyboard.
So far I've come up with the code below but I'm still unsure on how to get it work

, any suggestions?
SELECT Name, Phonenumber, Date_of_Arrival
TO_CHAR('Date_of_Arrival, Date) "Input any Date:"
From booking
Order by Date_of_Arrival;
thx.