mysql 类型转换详解数据库

mysql在比较时,首先会进行类型转型,由于是自动的,所以很难被发现,比如

select 1='1sdjfksdjfksdf';

这里写图片描述

select 1+'2';

这里写图片描述

mysql在操作数时默认会发生类型转换,字符串与数字操作时,字符串会转为数字。
比如

select 1='1aaaa'; //结果,1 
select 11='11bbb'; //结果,1

那么这一条数据会被查询出来,因为11michael会自动转换为11

官网的例子:

For comparisons of a string column with a number, MySQL cannot use an
index on the column to look up the value quickly. If str_col is an
indexed string column, the index cannot be used when performing the
lookup in the following statement:
SELECT * FROM tbl_name WHERE str_col=1; The reason for this is that
there are many different strings that may convert to the value 1, such
as ‘1’, ’ 1’, or ‘1a’.

参考

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/3740.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论