When using SQL, are there any benefit of using = in a WHERE clause instead of LIKE?
Without any special operator, LIKE and = are the same, right?
|
When using SQL, are there any benefit of using Without any special operator, |
||||
|
The equals (=) operator is a "comparison operator compares two values for equality." In other words, in an SQL statement, it won't return true unless both sides of the equation are equal. For example:
The LIKE operator "implements a pattern match comparison" that attempts to match "a string value against a pattern string containing wild-card characters." For example:
LIKE is generally used only with strings and equals (I believe) is faster. The equals operator treats wild-card characters as literal characters. The difference in results returned are as follows:
And
Would return the same result, though using LIKE would generally take longer as its a pattern match. However,
And
Would return different results, where using "=" results in only results with "Chris%" being returned and the LIKE operator will return anything starting with "Chris". Hope that helps. Some good info can be found here. |
|||||||||||||
|
|
like and = are different. Like is what you would use in a search query. it also allows wildcards like _ and %. = should be used if you want exact matches. and it will be faster. |
|||
|
|
|
LIKE and EQUALS are two entirely different operators. EQUALS compares two pieces of data byte by byte. This means that equivalent strings in different encodings may not be equal, even though they look the same to the eye. LIKE compares strings, and it takes into account the encoding of each string so as not to be fooled by different encodings of the same content. There is no speed advantage, because the operators have different purposes!! This is like asking which is faster: an update or a delete? It's a nonsense question. Use the operator which is correct for your use case, which for comparing strings is going to be the LIKE operator in 99% of cases. References: |
||||
|
|
|
Depends on the database system. Generally with no special characters, yes, = and LIKE are the same. Some database systems, however, may treat collation settings differently with the different operators. For instance, in MySQL comparisons with = on strings is always case-insensitive by default, so LIKE without special characters is the same. On some other RDBMS's LIKE is case-insensitive while = is not. |
||||
|
One difference - apart from the possibility to use wildcards with LIKE - is in trailing spaces: The = operator ignores trailing space, but LIKE does not. |
|||||
|
|
To address the original question regarding performance, it comes down to index utilization. When a simple table scan occurs, "LIKE" and "=" are identical. When indexes are involved, it depends on how the LIKE clause is formed. More specifically, what is the location of the wildcard(s)? Consider the following:
There may be also negligible difference in the creation of the query plan when using "=" vs "LIKE". |
|||
|
|
|
For this example we take it for granted that varcharcol doesn't contain
The first one results in 0 row output while the second one shows the whole list. = is strictly-match case while like acts like a filter. if filter has no criteria, every data is valid. like - by the virtue of its purpose works a little slower and is intended for use with varchar and similar data. |
||||
|
|
|
If you search for an exact match, you can use both, = and LIKE. Using "=" is a tiny bit faster in this case (searching for an exact match) - you can check this yourself by having the same query twice in SQL Server Management Studio, once using "=", once using "LIKE", and then using the "Query" / "Include actual execution plan". Execute the two queries and you should see your results twice, plus the two actual execution plans. In my case, they were split 50% vs. 50%, but the "=" execution plan has a smaller "estimated subtree cost" (displayed when you hover over the left-most "SELECT" box) - but again, it's really not a huge difference. But when you start searching with wildcards in your LIKE expression, search performance will dimish. Search "LIKE Mill%" can still be quite fast - SQL Server can use an index on that column, if there is one. Searching "LIKE %expression%" is horribly slow, since the only way SQL Server can satisfy this search is by doing a full table scan. So be careful with your LIKE's ! Marc |
|||||||
|
|
Using = avoids wildcards and special characters conflicts in the string when you build the query at run time. This makes the programmer's life easier by not having to escape all special wildcard characters that might slip in the LIKE clause and not producing the intended result. After all, = is the 99% use case scenario, it would be a pain to have to escape them every time. rolls eyes at '90s I also suspect it's a little bit slower, but I doubt it's significant if there are no wildcards in the pattern. |
||||
|
|
|
Really it comes down to what you want the query to do. If you mean an exact match then use =. If you mean a fuzzier match, then use LIKE. Saying what you mean is usually a good policy with code. |
|||
|
|
|
The LIKE keyword undoubtedly comes with a "performance price-tag" attached. That said, if you have an input field that could potentially include wild card characters to be used in your query, I would recommend using LIKE only if the input contains one of the wild cards. Otherwise, use the standard equal to comparison. Best regards... |
|||
|
|
|
The for example:
and in equal to operator it matches the exact string or value you have provided. |
||||
|
|
|
= and LIKE is not the same; = matches the exact string, while LIKE matches a string that may contain wildcards (%) |
|||
|
|
|
Given, "united states of america" as a field in your DB
would return nothing whereas
would return results. |
||||
|
|
|
In Oracle, a ‘like’ with no wildcards will return the same result an ‘equals’, but could require additional processing. According to Tom Kyte, Oracle will treat a ‘like’ with no wildcards as an ‘equals’ when using literals, but not when using bind variables. |
|||
|
|
|
Besides the wildcards, the difference between Take this example:
|
|||
|
|
5votes for the like-operator tag. Could I kindly request that you suggest sql-like as a synonym? – FreshPrinceOfSO Apr 2 at 18:37