On Wed, 2002-01-16 at 18:51, [EMAIL PROTECTED] wrote:
> Hi there.
> 
> 
> I need to do this sentence:
> select * from table1 where match column1 against "word";

Try:
select * from table1 where match column1 against ("word");

> But it donīt works becouse crate the column like this:
> alter table table1 add column1 varchar(100);

That's ok, but don't forget to create an index of type FULLTEXT.
(with ALTER TABLE or CREATE INDEX).

There is a good example in:
http://mysql.com/doc/F/u/Fulltext_Search.html

> Well my question is:
> How I should create the column1 to have fulltext for this query??
> 
> Thanks
> Victor.
> 
> 
> 
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)
>    http://lists.mysql.com/           (the list archive)
> 
> To request this thread, e-mail <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> 
-- 
Diana Soares


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to