Hi everyone,
as example, I've the following SQL query ( using Access 2007 )
SELECT ID, FirstMaturityDate, PayMentDate,
iif(PayMentDate>FirstMaturityDate, PayMentDate, FirstMaturityDate)
as Maxdate
from Table 1
Actually, I need the alias Maxdate for further processing, but I don't want to to see Maxdate as column in output. Is this somehow possible ?