开发者

Where binary in SQL

I have an SQL statement:

SELECT * FROM customers WHERE BINARY login='xxx' A开发者_JS百科ND password='yyyy'

There are no blob/binary fields in the table, do I need the BINARY after the WHERE what else does it do?


BINARY is a built-in keyword that after your WHERE clause that forces a comparison for an exact case-sensitive match.

As a side note, you can also make columns case-sensitive by adding the BINARY keyword when you create your table.


https://dev.mysql.com/doc/refman/8.0/en/cast-functions.html#operator_binary

The BINARY operator casts the string following it to a binary string. This is an easy way to force a comparison to be done byte by byte rather than character by character. BINARY also causes trailing spaces to be significant.


SELECT 'user' = 'UsEr' // true
SELECT BINARY 'user' = 'UsEr' // false
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜