Viewing 2 posts - 1 through 2 (of 2 total)
Hi Byron, You can do it by using For each loop container.Basically divide the whole work into two parts.First Generate the excelsheet and...
December 29, 2017 at 3:15 am
#1973809
select max(myDate) from
( select field_1 myDate from myTable
union all
select field_2 myDate from myTable
select field_3 myDate from myTable) as Temp
It will return the maximum...
March 1, 2011 at 7:38 am
#1292927