ik heb deze tabel:
Nou gebruik ik:
Maar ik krijg gewoon geen resultaten. Waarom niet?
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| CREATE TABLE `forum_postext` ( `post_id` int(10) NOT NULL default '0', `post_text` text, PRIMARY KEY (`post_id`), FULLTEXT KEY `post_text` (`post_text`) ) TYPE=MyISAM; # # Gegevens worden uitgevoerd voor tabel `forum_postext` # INSERT INTO `forum_postext` VALUES (205, 'As more and more people demand high end graphic cards, more companies arise, offering different bundled features and prices. The competition for companies is getting intense; consumers now have multiple companies to choose from when looking for a video card. Today we introduce a relatively new company, a division of PINE, XFX. XFX focuses on the production of both high and low end graphic cards--from the high'); INSERT INTO `forum_postext` VALUES (1, 'sdfsdfda dfa d d a df a d'); INSERT INTO `forum_postext` VALUES (2, 'asdasdfa dasf sd adfad '); INSERT INTO `forum_postext` VALUES (3, 'fdhfdh'); INSERT INTO `forum_postext` VALUES (4, 'fdhfdh'); INSERT INTO `forum_postext` VALUES (0, 'more'); |
Nou gebruik ik:
code:
1
| SELECT * FROM forum_postext WHERE MATCH (post_text) AGAINST ('more') |
Maar ik krijg gewoon geen resultaten. Waarom niet?