Does index on Varchar make performance difference?(Varchar 上的索引是否会对性能产生影响?)
问题描述
varchar 列上的索引是否会使查询运行速度变慢?我可以把它变成int.我不需要做 LIKE % 比较.
Does index on a varchar column make the query run slower? I can make that be int. and I don't need to do the LIKE % comparison.
推荐答案
varchar 列上的索引是否会使查询运行速度变慢?
Does index on a varchar column make the query run slower?
不,没有.
如果优化器决定使用索引,查询将运行得更快.该表上的 INSERTs/UPDATEs/DELETEs 会更慢,但不太可能引起注意.
No, it does not.
If the optimizer decides to use of the index, the query will run faster. INSERTs/UPDATEs/DELETEs on that table will be slower, but not likely enough to notice.
我不需要做 LIKE % 比较
I don't need to do the LIKE % comparison
注意使用:
LIKE '%whatever%'
...将不使用索引,但以下将:
...will not use an index, but the following will:
LIKE 'whatever%'
关键是字符串左侧的通配符意味着不能使用列上的索引.
The key is wildcarding the lefthand side of the string means that an index on the column can't be used.
还知道 MySQL 限制了为索引 - 对于 MyISAM(InnoDB 为 767 字节)表,它们最长可达 1000 字节.
Also know that MySQL limits the amount of space set aside for indexes - they can be up to 1000 bytes long for MyISAM (767 bytes for InnoDB) tables.
这篇关于Varchar 上的索引是否会对性能产生影响?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Varchar 上的索引是否会对性能产生影响?
基础教程推荐
- 是否可以执行按位分组功能? 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 无法解决整理冲突 2021-01-01
