Varchar 上的索引是否会对性能产生影响?

2023-10-25数据库问题
20

本文介绍了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 上的索引是否会对性能产生影响?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

Mysql目录里的ibtmp1文件过大造成磁盘占满的解决办法
ibtmp1是非压缩的innodb临时表的独立表空间,通过innodb_temp_data_file_path参数指定文件的路径,文件名和大小,默认配置为ibtmp1:12M:autoextend,也就是说在文件系统磁盘足够的情况下,这个文件大小是可以无限增长的。 为了避免ibtmp1文件无止境的暴涨导致...
2025-01-02 数据库问题
151

按天分组的 SQL 查询
SQL query to group by day(按天分组的 SQL 查询)...
2024-04-16 数据库问题
77

SQL 子句“GROUP BY 1"是什么意思?意思是?
What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)...
2024-04-16 数据库问题
62

MySQL groupwise MAX() 返回意外结果
MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)...
2024-04-16 数据库问题
13

MySQL SELECT 按组最频繁
MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)...
2024-04-16 数据库问题
16

在 Group By 查询中包含缺失的月份
Include missing months in Group By query(在 Group By 查询中包含缺失的月份)...
2024-04-16 数据库问题
12