By definition (at least from what I've seen) sargable means that a query is capable of having the query engine optimize the execution plan that the query uses. I've tried looking up the answers, but there doesn't seem to be a lot on the subject matter. So the question is, what does or doesn't make an SQL query sargable? Any documentation would be greatly appreciated.
For reference: Sargable
-
76+1 for "sargable". That's my word of the day for today. :-pBFree– BFree2009年04月28日 20:03:12 +00:00Commented Apr 28, 2009 at 20:03
-
1I might also add to Adam's answer, that the mountains of information are in most cases extremely particular to each DB engine.Hoagie– Hoagie2009年04月28日 20:05:33 +00:00Commented Apr 28, 2009 at 20:05
-
47SARG = Search ARGument. Funny thing is: "SARG" in German means "Coffin", so I always have to smile when folks talk about SARGABLE - able to be put in a coffin? :-)marc_s– marc_s2009年04月28日 20:31:28 +00:00Commented Apr 28, 2009 at 20:31
-
sargability depends on your environment. MySQL's is documented here: dev.mysql.com/doc/refman/5.0/en/mysql-indexes.htmlFrank Farmer– Frank Farmer2010年06月11日 22:13:11 +00:00Commented Jun 11, 2010 at 22:13
-
Having free-text fields instead of "lookup tables" also goes against the spirit of making a query sargable. Users misspell stuff when entering free-text (e.g. town name), whereas lookup-tables force users to choose a correctly spelled entry. Well worth the slight extra trouble, because this can be properly indexed instead of using LIKE '%...%' in the predicate.Reversed Engineer– Reversed Engineer2018年05月14日 07:28:22 +00:00Commented May 14, 2018 at 7:28
4 Answers 4
The most common thing that will make a query non-sargable is to include a field inside a function in the where clause:
SELECT ... FROM ...
WHERE Year(myDate) = 2008
The SQL optimizer can't use an index on myDate, even if one exists. It will literally have to evaluate this function for every row of the table. Much better to use:
WHERE myDate >= '01-01-2008' AND myDate < '01-01-2009'
Some other examples:
Bad: Select ... WHERE isNull(FullName,'Ed Jones') = 'Ed Jones'
Fixed: Select ... WHERE ((FullName = 'Ed Jones') OR (FullName IS NULL))
Bad: Select ... WHERE SUBSTRING(DealerName,4) = 'Ford'
Fixed: Select ... WHERE DealerName Like 'Ford%'
Bad: Select ... WHERE DateDiff(mm,OrderDate,GetDate()) >= 30
Fixed: Select ... WHERE OrderDate < DateAdd(mm,-30,GetDate())
10 Comments
GROUP BY
cause a query to become non-sargable?WHERE ((FullName = 'Ed Jones') OR (FullName IS NULL))
be SELECT... FROM ... WHERE FullName = 'Ed Jones' UNION SELECT...FROM...WHERE FullName IS NULL
? I was once told by an optimisation guy that using OR in the where clause can unsarg queries..?Select ... WHERE isNull(FullName,'Ed Jones') = 'Ed Jones'
and Select ... WHERE ((FullName = 'Ed Jones') OR (FullName IS NULL))
. They both use the index on FullName and do an index seek.Don't do this:
WHERE Field LIKE '%blah%'
That causes a table/index scan, because the LIKE value begins with a wildcard character.
Don't do this:
WHERE FUNCTION(Field) = 'BLAH'
That causes a table/index scan.
The database server will have to evaluate FUNCTION() against every row in the table and then compare it to 'BLAH'.
If possible, do it in reverse:
WHERE Field = INVERSE_FUNCTION('BLAH')
This will run INVERSE_FUNCTION() against the parameter once and will still allow use of the index.
2 Comments
In this answer I assume the database has sufficient covering indexes. There are enough questions about this topic.
A lot of the times the sargability of a query is determined by the tipping point of the related indexes. The tipping point defines the difference between seeking and scanning an index while joining one table or result set onto another. One seek is of course much faster than scanning a whole table, but when you have to seek a lot of rows, a scan could make more sense.
So among other things a SQL statement is more sargable when the optimizer expects the number of resulting rows of one table to be less than the tipping point of a possible index on the next table.
You can find a detailed post and example here.
Comments
For an operation to be considered sargable, it is not sufficient for it to just be able to use an existing index. In the example above, adding a function call against an indexed column in the where clause, would still most likely take some advantage of the defined index. It will "scan" aka retrieve all values from that column (index) and then eliminate the ones that do not match to the filter value provided. It is still not efficient enough for tables with high number of rows. What really defines sargability is the query ability to traverse the b-tree index using the binary search method that relies on half-set elimination for the sorted items array. In SQL, it would be displayed on the execution plan as a "index seek".