2000-12-28 03:56:38 +02:00
|
|
|
a b
|
|
|
|
Only MyISAM tables support collections
|
|
|
|
Full-text indexes are called collections
|
|
|
|
a b
|
|
|
|
Full-text indexes are called collections
|
|
|
|
a b
|
|
|
|
Full-text indexes are called collections
|
|
|
|
Only MyISAM tables support collections
|
2001-11-21 18:25:44 +01:00
|
|
|
a b
|
|
|
|
Only MyISAM tables support collections
|
|
|
|
Function MATCH ... AGAINST() is used to do a search
|
|
|
|
some test foobar implements vector space model
|
2001-01-08 00:04:30 +02:00
|
|
|
id
|
|
|
|
id
|
|
|
|
id
|
|
|
|
3
|
|
|
|
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Comment
|
|
|
|
t2 1 tig 1 ticket A NULL NULL NULL
|
|
|
|
t2 1 tix 1 inhalt A NULL 1 NULL FULLTEXT
|
|
|
|
Table Create Table
|
|
|
|
t2 CREATE TABLE `t2` (
|
|
|
|
`ticket` int(11) default NULL,
|
|
|
|
`inhalt` text,
|
2001-02-15 03:43:14 +02:00
|
|
|
KEY `tig` (`ticket`),
|
|
|
|
FULLTEXT KEY `tix` (`inhalt`)
|
2001-01-08 00:04:30 +02:00
|
|
|
) TYPE=MyISAM
|
2001-02-28 11:43:08 +01:00
|
|
|
ticket inhalt
|
2001-04-17 14:17:22 +02:00
|
|
|
ticket inhalt
|
|
|
|
3 foobar
|
|
|
|
ticket inhalt
|
|
|
|
3 foobar
|