fulltext.result
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:

MySQL

Development Platform:

Visual C++

  1. a b
  2. Only MyISAM tables support collections
  3. Full-text indexes are called collections
  4. a b
  5. Full-text indexes are called collections
  6. a b
  7. Full-text indexes are called collections
  8. Only MyISAM tables support collections
  9. id
  10. id
  11. id
  12. 3
  13. Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Comment
  14. t2 1 tig 1 ticket A NULL NULL NULL
  15. t2 1 tix 1 inhalt A NULL 1 NULL FULLTEXT
  16. Table Create Table
  17. t2 CREATE TABLE `t2` (
  18.   `ticket` int(11) default NULL,
  19.   `inhalt` text,
  20.   KEY `tig` (`ticket`),
  21.   FULLTEXT KEY `tix` (`inhalt`)
  22. ) TYPE=MyISAM
  23. ticket inhalt