Key 6 relates to the 6th key, or index, in the CREATE TABLE statement
for this table:

>>   PRIMARY KEY  (`prod_id`),
>>   UNIQUE KEY `prod_no` (`prod_no`),
>>   KEY `products_index1` (`prod_status`),
>>   KEY `products_index2` (`prod_start_date`,`prod_end_date`),
>>   KEY `on_sale` (`on_sale`),
>>   FULLTEXT KEY `prod_search` (`prod_name`,`prod_description`),
>>   FULLTEXT KEY `prod_no_2` (`prod_no`)

"Key" is another name for "Index", so this is about your FULLTEXT index:

FULLTEXT KEY `prod_search` (`prod_name`,`prod_description`)

I noticed that the INSERT you listed was for the products table and
the CREATE TABLE was for the web_products table.

Just to be sure, please can you post the CREATE TABLE statement for
the products table?

Im

--
http://www.atomdatabase.com
MySQL Database Management & Design Services

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to