I have a FULLTEXT index called cart_product_ftiin a table
Whenever I use it, I have to specify exactly all the fields that are in the index:
MATCH (foo,bar,etc)
My thoughts: if later I decide to add / remove a field to the index, all the scripts will need to be updated or they will be broken.
So I'm wondering if there is a way to get a list of all the fields in the index and then paste the list into mine MATCH(), so it doesnβt need to be updated if the index is changed in FULLTEXT?
source
share