I am working in Spring-java and mysql.
I have to query the table of size 100k records
. Table has say 10 columns.
And In my sql select query I have to make like queries with %text% search on say 4 columns. Those 4 columns are varchar(200), having average text size of 30 character.
I have gone through few blogs and SO answers to understand about index and after reading I came to this question.
Will making those 4 columns individually FULLTEXT
index, makes difference in execution time of like query?