Hi All.I have a table:A(Date) B(Time) C(Value)2008-11-01 06.00 5.02008-11-01 18.00 3.02008-11-02 06.00 6.02008-11-02 18.00 9.02008-11-03 06.00 7.02008-11-03 18.00 0.02008-11-04 06.00 7.02008-11-04 18.00 0.0
As you can see I do not have the "18.00 o'clock value" for the "2008-11-03".I need to select only 18.00 values, and if i do not have it, i have to get the "06.00 value".So the result should be:A(Date) B(Time) C(Value)2008-11-01 18.00 3.02008-11-02 18.00 9.02008-11-03 06.00 0.02008-11-04 18.00 0.0
I think it's not too difficult, but I'm not able !!!Thank you.