I have a problem with a query and hope someone can tell me what I am missing. The query is more complicated than this but I have simplified it in order to trace the error.
Both of these work
but his fails.
Am I going mad?
Keith
Both of these work
Code:
SELECT MAX(T2) FROM THATFORUM
SELECT T1, T2, CREATED FROM THATFORUM
Code:
SELECT T1, T2, CREATED, MAX(T2) FROM THATFORUM
Keith