We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79caca1 commit 8a86170Copy full SHA for 8a86170
mysql-test/r/fulltext.result
@@ -55,6 +55,9 @@ Full-text indexes are called collections 1
55
Only MyISAM tables support collections 2
56
Function MATCH ... AGAINST() is used to do a search 0
57
Full-text search in MySQL implements vector space model 0
58
+select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE);
59
+a b
60
+Full-text search in MySQL implements vector space model
61
delete from t1 where a like "MySQL%";
62
update t1 set a='some test foobar' where MATCH a,b AGAINST ('model');
63
delete from t1 where MATCH(a,b) AGAINST ("indexes");
0 commit comments