G
Guest
Hi all,
I am a little stuck. I basically want to see the first date when any person
has more than 60minutes free. import_date = the date the data was extracted.
So any information previous to the import date is not needed.
Select Zone, Person, min(Date), Time_Available
From Table_Export
Where (Date>import_date)
Group By Zone, Person, Time_Available
Having Time_Available>59
But what this shows is Every date where a person has more than 60 minutes
free.
Any help is much appreciated.
Ernest
sorry if double post
I am a little stuck. I basically want to see the first date when any person
has more than 60minutes free. import_date = the date the data was extracted.
So any information previous to the import date is not needed.
Select Zone, Person, min(Date), Time_Available
From Table_Export
Where (Date>import_date)
Group By Zone, Person, Time_Available
Having Time_Available>59
But what this shows is Every date where a person has more than 60 minutes
free.
Any help is much appreciated.
Ernest
sorry if double post