Viewing 2 posts - 1 through 2 (of 2 total)
I found if you want to get rid of white space at the end of a column when you have variable length, then put in a Derived Column transformation and...
April 7, 2016 at 3:11 am
#1870374
To get months and days...
declare @a1 date
declare @a2 date
select @a1 = '2014-01-05',
@a2 = '2014-02-04'
--Select CASE WHEN DAY(@a1) < Day(@a2)
SelectCASE WHEN DAY(@a1)...
July 16, 2015 at 4:02 am
#1812885