I have a table with millions of records, for example:
id  Name   Age
1   john    23
2   peter   27
3   moses   23
.... ....
Like this using MySQL MATCH AGAINST query. I want to pick the third row which has name moses & age 23.
I can use an ordinary query like:
select from table where name='moses' && age ='23'
But this takes a lot of time. So, my friend told me to use a Match Against Query. Can anyone tell me whether we can do this in a Match Against Query and its advantages?
How can we write the above query using a MATCH() ... AGAINST syntax?