Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The expense is using the DateAdd function not only in the SELECT, but also in the WHERE; Or using the Sub Query which initially returns more data than I need, but then can be filtered without using the DateAdd function again on the database.

Execution Plan seems to imply that they are identical as far as it is concerned. I'm wondering which would be more efficient?

    DECLARE @DateFrom DateTime
    SET @DateFrom = '2011-05-27'
    DECLARE @DateTo DateTime
    SET @DateTo = '2011-06-27'

    SELECT id, name, 
    dateAdd(hour, datediff(hour, getdate(), getutcdate()), --UTC offset
            dateadd(second, itsm_requiredbyx, '1/1/1970 12:00 AM')) as itsm_requiredbyx
    FROM tablename
    WHERE dateAdd(hour, datediff(hour, getdate(), getutcdate()), --UTC offset
            dateadd(second, itsm_requiredbyx, '1/1/1970 12:00 AM'))
            BETWEEN @DateFrom AND @DateTo

    ORDER BY itsm_requiredbyx desc

    ---------------------------------------------------------------------------------------------

    SELECT *
    FROM
        (
        select id, name, 
        dateAdd(hour, datediff(hour, getdate(), getutcdate()), --UTC offset
                dateadd(second, itsm_requiredbyx, '1/1/1970 12:00 AM')) as itsm_requiredbyx
        from tablename 
        ) RR
    WHERE itsm_requiredbyx BETWEEN @DateFrom AND @DateTo
    ORDER BY itsm_requiredbyx desc
share|improve this question
4  
I don't think it matters. But it seeems you are doing calculations to field itsm_requiredbyx and then check if the result is between two external values, @DateFrom and @DateTo. If you don't do any calculations to the field, but you do the (reversed) calculations to the external values instead and then check if itsm_requiredbyx is between these two calculated values, the query can use the index of itsm_requiredbyx. – ypercube Jun 2 '11 at 9:52
Syntax fixed - thanks. – DavidC Jun 2 '11 at 10:02
There are locales with an offset from UTC that isn't a whole number of hours. Since you seem to be trying to write international code, you might need to be aware of that. – Damien_The_Unbeliever Jun 2 '11 at 13:29

3 Answers

up vote 6 down vote accepted

I don't think it matters which of the two you use. And the Execution Plans agree.

But it seems you are doing calculations to field itsm_requiredbyx and then check if the result is between two external values, @DateFrom and @DateTo. This way, all datetimes from this field are processed by the functions before the WHERE conditions can be applied and no index can be used. The second link (Ten Common SQL Programming Mistakes) in @DOK's answer provide more detailed info on why and when this happens.

If you don't do any calculations to the field, but you do the (reversed) calculations to the external values instead and then check if itsm_requiredbyx is between these two calculated values, the query can use an index of itsm_requiredbyx (and the functions will only be called twice and not for every row in the table).

share|improve this answer

This article might help you choose. If your date columns are indexed, there might be a big difference between the methods used, particularly in the WHERE clause.

As it says,

If you are searching large tables with lots of records, you will most likely index some of the date columns that are commonly used to constrain queries. When a date column is used in a WHERE clause, the query optimizer will not use an index if the date column is wrapped in a function.

This is also explained in Ten Common SQL Programming Mistakes, particularly under #2 Functions on indexed columns in predicates:

The problem arises from the fact that the index columns are being passed to a function, which the query engine must then evaluate for every single row in the table. In cases such as these, the WHERE clause predicate is deemed "non-SARGable" and the best that the query optimizer can do is perform a full index or table scan.

To make sure the indexes get used, we need to avoid the use of functions on the indexed columns.

share|improve this answer

This is easily solved with a view. The view has the calculation, but it's only evaluated once, even when the calculated column is referenced in the where clause:

CREATE VIEW tablename_view AS
SELECT id, name, 
dateAdd(hour, datediff(hour, getdate(), getutcdate()),
    dateadd(second, itsm_requiredbyx, '1/1/1970 12:00 AM')) as itsm_requiredbyx
FROM tablename;

SELECT * FROM tablename_view
WHERE itsm_requiredbyx BETWEEN @DateFrom AND @DateTo
ORDER BY itsm_requiredbyx desc;

It's also easier to read and maintain the query.

share|improve this answer
Unfortunately it's an external supplier's database, we are not in a position to create views on their database. – DavidC Jun 2 '11 at 10:01
2  
A view is a macro unless indexed. This does exactly the same as code in the question because the macro expands. -1 – gbn Jun 2 '11 at 10:11
Well excuse me... with 20+ years of DB experience I'm very surprised someone has -1 my answer. I KNOW this approach works really well and I have used it many, many times with great success and extremely fast query execution. – Bohemian Jun 2 '11 at 10:27
I haven't downvoted you. But can you explain how this query will be fast if the table has, say, 1 billion rows? Will not the dateadd() functions be applied 1 billion times? – ypercube Jun 2 '11 at 10:43
1  
You are wrong: a view is macro and there no performance advantage unless indexed (a.k.a materialised) Simple. Feel free to prove me wrong by demo or authoritative article... sqlblogcasts.com/blogs/tonyrogerson/archive/2008/01/03/…. And 20 years+ eh? See this: programmers.stackexchange.com/questions/17315//17318 – gbn Jun 2 '11 at 11:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.