Viewing 2 posts - 1 through 2 (of 2 total)
I agree I keep hearing how you need ETL tools, people don t know how to import and export data. I never needed anything outside of SQL server
May 14, 2010 at 1:41 pm
#1167758
select Max(date)
from
(select date1 from table1
union all
select date2 from table1
select date3 from table1 ) as tbl
March 30, 2010 at 9:35 am
#1142369