Forum Moderators: coopster
I'm rather new to php and mysql. I've got to make a query on about 150.000 records. Each of these records has a number, a title, some more information and a field with a lot of text (sometimes more than 500 characters per field). How do I make a query on these large fields via PHP? I guess that it will take a long while to query all these fields. Are there tricks to make this query faster?
Turbohost
[mysql.com...]
Using the MATCH() function you can quickly search these fields if they are FULLTEXT indexes.
select number, title, more_info, text_field where number = 'yourqueryvalue'