0

I have 1 SSIS Conditional Split with 2 conditions, which I need to combine. Both conditions are looking for the same date.

[DateFinished] > (DT_DBTIMESTAMP)"2016-09-01"

[DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"

I have tried

[DateFinished] && [DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"

However, this errors.

I would appreciate any help with getting the correct structure to make this work.

Thank you so much.

4

1 回答 1

1
[DateFinished] > (DT_DBTIMESTAMP)"2016-09-01" && [DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"
于 2017-10-04T22:43:59.077 回答