Does index on Varchar make performance difference? Does index on Varchar make performance difference? mysql mysql

Does index on Varchar make performance difference?


Does index on a varchar column make the query run slower?

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.

I don't need to do the LIKE % comparison

Be aware that using:

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.

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.


If you can replace your varchar column with an integer (which i think is what your hinting at) Then an index including the integer column will perform better than the varchar column for a few reasons.

  1. The index size will be smaller and involve less paging.
  2. The comparison of integers is far better than varchar.


Indexing don't make query slower, database size just get bigger, So go ahead and give it a try.

You should able to get better performance on fetching rows but its depends on your data, your queries.