Hello.
In a query, I want to calculate an end time based on an arrival time (TIME column) and a duration (DECIMAL column), kind :
SELECT TRA_DEPARTURE, TRA_DURATION, (TRA_DEPARTURE + TRA_DURATION) AS TRA_ARRIVAL
FROM T_TRAVEL
With :
TRA_DEPARTURE TIME
TRA_DURATION DECIMAL (6,2)
Thanks.
It works perfectly, but it’s not going to be easy to integrate the rows into a query already populated with different types of joins and “case when” rows. I’ll give it a try… Thanks too…