fulltext.result 620 Bytes
Newer Older
1 2 3 4 5 6 7 8
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
9 10 11 12 13 14 15 16 17 18 19
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,
20 21
  KEY `tig` (`ticket`),
  FULLTEXT KEY `tix` (`inhalt`)
22
) TYPE=MyISAM
23
ticket	inhalt
unknown's avatar
unknown committed
24 25 26 27
ticket	inhalt
3	foobar
ticket	inhalt
3	foobar