Ok I have a date field called ADATE and I want to add the column "Duration(M in)" to this date.
I have had ago at the code but it still doesn't work.
I have tried dividing the added "Duration(M in)" but the answers are incorrect each time.
Select TO_CHAR(adate, 'dd/Mon/yyyy hh24:mi')as adate, to_CHAR(ADATE + "Duration(Min)" , 'dd/Mon/yyyy hh24:mi') as NEW_ADATE, "Duration(M in)" from Appointment;
Thanks very much in advance.
I have had ago at the code but it still doesn't work.
I have tried dividing the added "Duration(M in)" but the answers are incorrect each time.
Select TO_CHAR(adate, 'dd/Mon/yyyy hh24:mi')as adate, to_CHAR(ADATE + "Duration(Min)" , 'dd/Mon/yyyy hh24:mi') as NEW_ADATE, "Duration(M in)" from Appointment;
Thanks very much in advance.
Comment