Quantcast
Channel: SQL Case Sensitive String Compare - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Answer by Dave Sexton for SQL Case Sensitive String Compare

$
0
0

Just as another alternative you could use HASHBYTES, something like this:

SELECT * FROM a_table WHERE HASHBYTES('sha1', attribute) = HASHBYTES('sha1', 'k')

Viewing all articles
Browse latest Browse all 7

Trending Articles