There's the (almost religious) discussion, if you should use LIKE or '=' to compare strings in SQL statements.
- Are there reasons to use LIKE?
- Are there reasons to use '='?
- Performance? Readability?
Thanks in advance!
|
There's the (almost religious) discussion, if you should use LIKE or '=' to compare strings in SQL statements.
Thanks in advance! |
|||
|
|
|
To see the performance difference, try this:
Comparing strings with '=' is much faster. |
|||||
|
|
|
||||
|
|
|||
|
|
|
LIKE does matching like wildcards char [*, ?] at the shell |
||||
|
|
|
There's a couple of other tricks that Postgres offers for string matching (if that happens to be your DB): ILIKE, which is a case insensitive LIKE match:
Matches:
And if you want to get really mad you can use regular expressions:
Matches:
|
|||||||||
|
|
There is another reason for using "like" even if the performance is slower: Character values are implicitly converted to integer when compared, so: declare @transid varchar(15) if @transid != 0 will give you a "The conversion of the varchar value '123456789012345' overflowed an int column" error. |
|||
|
|