Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Multi-Select Parameters for Reporting Services

    If you want to use an IN try this?

    WHERE RealTableColumn IN (SELECT TempTableColumn FROM TempTable)

    EXISTS can be fast too but not sure in this scenario.

    WHERE EXISTS (SELECT TempTableColumn FROM TempTable WHERE TempTableColumn...

Viewing post 1 (of 1 total)