Is there any difference between:
SELECT * FROM users WHERE username="davyjones"
and
SELECT * FROM users WHERE username LIKE "davyjones"
(I think I've bungled up the syntax... pardon me for that,
I'm mostly a desktop app development guy)
|
Is there any difference between:
and
(I think I've bungled up the syntax... pardon me for that, |
||||
|
|
|
As per SQL standard, the difference is treatment of trailing whitespace in CHAR columns. Example:
Of course, assuming you run this on a standard-compliant DBMS. BTW, this is one the main differences between CHARs and VARCHARs. |
|||||||||||||||||||
|
|
LIKE allows partial matching / use of wildcards, while = checks for exact matches. For example
Will return rows where field value is any of the following:
|
|||||||
|
|
In that case, there is no difference that would come up in the results. However, it uses a different method for comparision, and the "LIKE" would be much slower. Check out this for examples of LIKE : http://www.techonthenet.com/sql/like.php In this case, you still want to use the equals. Update: Note that there is a crucial difference when it comes to CHAR type columns in which the results will be different. See this answer for more details. When using VARCHAR (presumably the norm), the above are equivalent and equals is to be preferred. |
|||||||||||||||||
|
|
Selects all usernames starting with |
|||
|
|
|
That will give you the same result. However, LIKE allows wildcards, for example...
The only syntax problem was double quotes instead of single quotes |
|||
|
|
|
LIKE searches for a pattern.
|
||||
|
|
Use the trailing whitespace to search the name field:
|
||||
|
|
|
The
and Equals |
|||
|
|
|
Like is pattern matching operator and |
||||
|
|
|
LIKE supports wildcards. Usually it uses the % or _ character for the wildcard. Using the LIKE operator with no wildcards is the same as using the = operator. |
|||
|
|
|
Equals So, with |
|||
|
|
|
As far as I know, there is no difference but a time cost to the two selects you wrote. Usually one uses But as your two selects go, the only difference I see is a different run time, since |
||||
|
|
|
|
||||
|
|