Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Searching MySQL

Status
Not open for further replies.

sparc20

Programmer
Mar 13, 2002
56
GB
Im trying to search a MySQL DB but i get the following error instead:

Error

SQL-query :

SELECT * ,
MATCH (

introduction
)
AGAINST (
'NASA'
) AS SCORE
FROM project_stories
LIMIT 0 , 30

MySQL said:


#1191 - Can't find FULLTEXT index matching the column list



Anyone knows whats going ?
 
I have yes, all columns are text and are indexed as fulltext. the funny thing is it that the query
runs for seperate columns:i.e. title,introduction,body_text

SELECT *,
MATCH(title) AGAINST...

but when the query is combined with the other 2 columns

SELECT *,
MATCH(title,introduction,body_text) AGAINST...


returns that error above
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top