RE: Poor Select speed on simple 1 table query

2004-11-15 Thread Donny Simonton
he index. It's almost like MySQL is returning the results from the index > file and then doing a non-indexed table join to the table data to get the > Rcd_Id. > > Mike > > > > > -Original Message----- > > > From: mos [mailto:[EMAIL PROTECTED] > &

RE: Poor Select speed on simple 1 table query

2004-11-15 Thread mos
Rcd_Id. Mike > -Original Message- > From: mos [mailto:[EMAIL PROTECTED] > Sent: Monday, November 15, 2004 2:40 PM > To: [EMAIL PROTECTED] > Subject: Poor Select speed on simple 1 table query > > It doesn't get any simpler than this. :) > > The Select statement take

RE: Poor Select speed on simple 1 table query

2004-11-15 Thread Donny Simonton
Mos, Personally, I never use like for anything. I would add a fulltext index myself and call it a day. But that's me. Donny > -Original Message- > From: mos [mailto:[EMAIL PROTECTED] > Sent: Monday, November 15, 2004 2:40 PM > To: [EMAIL PROTECTED] > Subject:

Poor Select speed on simple 1 table query

2004-11-15 Thread mos
It doesn't get any simpler than this. :) The Select statement takes way too long to complete. select rcd_id, company_name from company where company_name like "fra%" 12357 rows fetched (86.08 seconds) However if it returns just the column value from the index, it is quite fast: select company_name