Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Update stmt tuning

    I have gone thru your problem and found that it can be done in the following way where we are traversing the source table twice.

    Will think about another solution which...

  • RE: Using Exotic Joins in SQL Part 1

    Hi

    You can write query like this:

    suppose say you are passing two parameters name @StartDate and @EndDate and you column name in table is TransDate

    TransDate BETWEEN ISNULL(@StartDate, TransDate) AND ISNULL(@EndDate, TransDate)

     

Viewing 2 posts - 1 through 2 (of 2 total)