vote up 4 vote down star
2

When using SQL, are there any benefits of using = in a WHERE clause instead of LIKE?

Without any special operators, LIKE and = are the same, right?

flag

Might want to specify a db type ... mssql, mysql, oracle? – Allen Feb 12 at 22:09

12 Answers

vote up 10 vote down check

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:

SELECT * FROM Store WHERE Quantity = 200;

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:

SELECT * FROM Employees WHERE Name LIKE 'Chris%';

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:

SELECT * FROM Employees WHERE Name = 'Chris';

And

SELECT * FROM Employees WHERE Name LIKE 'Chris';

Would return the same result, though using LIKE would generally take longer as its a pattern match. However,

SELECT * FROM Employees WHERE Name = 'Chris%';

And

SELECT * FROM Employees WHERE Name LIKE 'Chris%';

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.

link|flag
1  
I'm under the impression that the OP knows when to use LIKE and when to use =, he's just wondering if there is a performance difference when there's no wildcard present. This answer briefly touches upon this but I feel that 95% of this answer is not really relevant. – Outlaw Programmer Feb 13 at 19:10
Very true. I'm not sure if the question was the same when I answered it. If it was, I did miss the part which asked about the performance. Thanks for the observation. – achinda99 Feb 13 at 19:15
vote up 1 vote down

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...

link|flag
vote up 0 vote down

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

link|flag
-1 as no, it's not always a tiny bit faster. If the column is indexed using %mystring% is a couple of orders of magnitude slower. Indeed any code standards worth their salt will have rigorous guidelines on when and when not to use like on any larger than a micky mouse database. – Cruachan Feb 12 at 22:17
I never said it would be a tiny bit slower for all cases - I said it will be a tiny bit slower if you search for an EXACT match. Of couse, searching with a LIKE and using wildcards, especially on the beginning and end of your search item, is MUCH slower, no doubt about that. – marc_s Feb 13 at 6:07
And yes, I agree - one should have clear guidelines as to when to use LIKE or not (only when you NEED to search with wildcards). But then again - in theory, there's no difference between theory and practice, but in practice....... – marc_s Feb 13 at 6:08
vote up 5 vote down

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.

This site explains like

link|flag
vote up 4 vote down

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.

link|flag
Is there something like an overview for this oddity? – Gumbo Feb 12 at 22:46
check the docs for whatever rdbms system you're using – ʞɔıu Feb 12 at 23:00
vote up 2 vote down

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.

link|flag
vote up 1 vote down

One difference - apart from the possibility to use wildcards with LIKE - is in trailing spaces: The = operator ignores trailing space, but LIKE does not.

link|flag
vote up 0 vote down

Given, "united states of america" as a field in your DB

WHERE state = 'united'

would return nothing whereas

WHERE state LIKE 'united%'

would return results.

link|flag
vote up -1 vote down

LIKE is not case sensitive and can use wild cards '%' and '_'.

link|flag
That depends on the database. For example, in SQL Server = isn't case sensitive either. – Grauenwolf Feb 12 at 22:04
That's not true. This depends on collation settings of the DB. – Josh Stodola Feb 12 at 22:24
vote up 0 vote down

= doesn't grace your collation settings, LIKE does.

link|flag
vote up 0 vote down

= and LIKE is not the same; = matches the exact string, while LIKE matches a string that may contain wildcards (%)

link|flag
vote up 2 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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