I have a query that performs quite nicely when run like this:
SELECT YADAYADA FROM MYTABLE WHERE FVAL <= 100 AND TVAL >= 100
Since there's an index for (FVAL,TVAL), the query is totally optimal as a nonclustered index seek for the whole query.
Now, it'd be nice to use a constant returned from a user defined function here. The function will return a constant value for the entire transaction, not just this query. But doing this:
SELECT YADAYADA FROM MYTABLE WHERE FVAL <= dbo.myVal() AND TVAL >= dbo.myVal()
Yields suboptimal results - the query plan no longer nicely runs as an index seek, but instead insists on seeking and then filtering, which is obviously MUCH slower - even though in this instance my function is defined as returning a constant value in this really simple case.
I've tried using a BETWEEN clause - no better. I've tried table-valued functions, no better (in fact, the query plan gets rapidly more complex).
Is there any way of persuading SQL*Server that 'hey buddy, this is a constant value we're getting here, and to optimize the plan accordingly??