Forum Discussion

photon's avatar
photon
Contributor
9 days ago
Solved

OLEDB positional parameters with a WHERE IN clause

We have FX rates published in a table to/from virtually every currency in the world. However, this is something like 70k rates a month and the vast majority are for currencies we don't use in our One...
  • photon's avatar
    9 days ago

    Ugh, I finally banged my face on the keyboard enough that I got a relevant search result.

    The missing tool was the STRING_SPLIT function. It can be used in the above example, like so:

    SELECT FromCurrency,ToCurrency,Rate FROM FxRateTable
    WHERE (FromCurrency IN (SELECT value FROM STRING_SPLIT(?,',')) AND ToCurrency = 'USD')
         OR
         (ToCurrency IN (SELECT value FROM STRING_SPLIT(?,',')) AND FromCurrency = 'USD')

    Alternatively, you can declare a @variable = ? and then string_split on the @variable instead of passing in both P1 and P2 with the same value.