What's the difference between
SELECT foo FROM bar WHERE foobar='$foo'
AND
SELECT foo FROM bar WHERE foobar LIKE'$foo'
|
|
What's the difference between
AND
|
||
|
|
|
|
LIKE can do wildcard matching:
If you don't need pattern matching, then use = instead of LIKE. It's faster and more secure. (You are using parameterized queries, right?) |
||
|
|
|
= in SQL does exact matching. LIKE does wildcard matching, using '%' as the multi-character match symbol and '_' as the single-character match symbol. '\' is the default escape character.
The MySQL site has documentation on the LIKE operator. The syntax is
|
|||
|
|
|
|
The end result will be the same, but the query engine uses different logic to get to the answer. Generally, LIKE queries burn more cycles than "=" queries. But when no wildcard character is supplied, I'm not certain how the optimizer may treat that. |
||
|
|
|
|
With the example in your question there is no difference. But, like Jesse said you can do wildcard matching
More info: http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html |
||
|
|
|
|
According to the MYSQL Reference page, trailing spaces are significant in LIKE but not =, and you can use wildcards, % for any characters, and _ for exactly one character. |
||
|
|
|
|
A little bit og google doesn't hurt... A WHERE clause with equal sign (=) works fine if we want to do an exact match. But there may be a requirement where we want to filter out all the results where 'foobar' should contain "foo". This can be handled using SQL LIKE clause alongwith WHERE clause. If SQL LIKE clause is used along with % characters then it will work like a wildcard.
Without a % character LIKE clause is very similar to equal sign alongwith WHERE clause. |
||
|
|
|
|
In your example, they are semantically equal and should return the same output. However, LIKE will give you the ability of pattern matching with wildcards. You should also note that = might give you a performance boost on some systems, so if you are for instance, searching for an exakt number, = would be the prefered method. |
||
|
|
|
|
Looks very much like taken out from a PHP script. The intention was to pattern-match the contents of variable As you put it, there is NO difference. It could potentially be slower but I bet MySQL realises there are no wildcard characters in the search string, so it will not do LIKE patter-matching after all, so really, no difference. |
|||
|
|
|
|
I think in term of speed = is faster than LIKE. As stated, = does an exact match and LIKE can use a wildcard if needed. I always use = sign whenever I know the values of something. For example
Then for likes I use things like:
If you use Oracle Developers Tool, you can test it with Explain to determine the impact on the database. |
||
|
|