summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/ft_boolean_syntax_func.result
blob: 0f5fe1238a4b41b27b66126f371fe24c6a23bbac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
'#--------------------FN_DYNVARS_033_01-------------------------#'
SET @@global.ft_boolean_syntax = ' -+()<>~*:``&|';
connect  con1,localhost,root,,,,;
connection con1;
SELECT @@global.ft_boolean_syntax;
@@global.ft_boolean_syntax
 -+()<>~*:``&|
SET @@global.ft_boolean_syntax = '+ -><()~*:""&|';
connect  con2,localhost,root,,,,;
connection con2;
SELECT @@global.ft_boolean_syntax;
@@global.ft_boolean_syntax
+ -><()~*:""&|
disconnect con2;
disconnect con1;
'#--------------------FN_DYNVARS_033_02-------------------------#'
connection default;
DROP TABLE IF EXISTS t1;
CREATE TABLE articles (
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
title VARCHAR(200),
body TEXT,
FULLTEXT (title,body)
);
INSERT INTO articles (title,body) VALUES
('MySQL Tutorial','DBMS stands for DataBase ...'),
('How To',''),
('How To Use MySQL Well','After you went through a ...'),
('Optimizing MySQL','In this tutorial we will show .... Run command line ...'),
('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'),
('100 Tips for Myisam','1. Myisam is faster than innodb 2. Tricks and Tips for Myisam...'),
('MySQL vs. YourSQL','In the following database comparison ...'),
('MySQL Security','When configured properly, MySQL ...'),
('Database Security','Configuring MySQL for ...');
SET @@global.ft_boolean_syntax = DEFAULT;
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('+mySQL -yourSQL' IN BOOLEAN MODE);
id	title	body
1	MySQL Tutorial	DBMS stands for DataBase ...
3	How To Use MySQL Well	After you went through a ...
4	Optimizing MySQL	In this tutorial we will show .... Run command line ...
5	1001 MySQL Tricks	1. Never run mysqld as root. 2. ...
8	MySQL Security	When configured properly, MySQL ...
9	Database Security	Configuring MySQL for ...
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('+MySQL +YourSQL' IN BOOLEAN MODE);
id	title	body
7	MySQL vs. YourSQL	In the following database comparison ...
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('MySQL' IN BOOLEAN MODE);
id	title	body
1	MySQL Tutorial	DBMS stands for DataBase ...
3	How To Use MySQL Well	After you went through a ...
4	Optimizing MySQL	In this tutorial we will show .... Run command line ...
5	1001 MySQL Tricks	1. Never run mysqld as root. 2. ...
7	MySQL vs. YourSQL	In the following database comparison ...
8	MySQL Security	When configured properly, MySQL ...
9	Database Security	Configuring MySQL for ...
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('mysql tutorial dbms' IN BOOLEAN MODE);
id	title	body
1	MySQL Tutorial	DBMS stands for DataBase ...
3	How To Use MySQL Well	After you went through a ...
4	Optimizing MySQL	In this tutorial we will show .... Run command line ...
5	1001 MySQL Tricks	1. Never run mysqld as root. 2. ...
7	MySQL vs. YourSQL	In the following database comparison ...
8	MySQL Security	When configured properly, MySQL ...
9	Database Security	Configuring MySQL for ...
SELECT id,title,body, (MATCH (title,body) 
AGAINST ('+security configuring' IN BOOLEAN MODE)) AS relevance
FROM articles WHERE MATCH (title,body) 
AGAINST ('+security configuring' IN BOOLEAN MODE);
id	title	body	relevance
8	MySQL Security	When configured properly, MySQL ...	1
9	Database Security	Configuring MySQL for ...	1.3333333730697632
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('"faster than"' IN BOOLEAN MODE);
id	title	body
6	100 Tips for Myisam	1. Myisam is faster than innodb 2. Tricks and Tips for Myisam...
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('+tutorial ~line' IN BOOLEAN MODE);
id	title	body
1	MySQL Tutorial	DBMS stands for DataBase ...
4	Optimizing MySQL	In this tutorial we will show .... Run command line ...
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('10*' IN BOOLEAN MODE);
id	title	body
5	1001 MySQL Tricks	1. Never run mysqld as root. 2. ...
SELECT id,title,body, (MATCH (title,body) 
AGAINST ('+MySQL +(>show <dbms)' IN BOOLEAN MODE)) AS relevance
FROM articles WHERE MATCH (title,body) 
AGAINST ('+MySQL +(>show <dbms)' IN BOOLEAN MODE)
ORDER BY relevance DESC;
id	title	body	relevance
4	Optimizing MySQL	In this tutorial we will show .... Run command line ...	1.25
1	MySQL Tutorial	DBMS stands for DataBase ...	0.8333333730697632
'---try setting different operators. Default '+ -><()~*:""&|'--'
SET @@global.ft_boolean_syntax='~ /!@#$%^&*()-';
SELECT * FROM articles WHERE MATCH (title,body)
AGAINST ('~mySQL /yourSQL' IN BOOLEAN MODE);
id	title	body
1	MySQL Tutorial	DBMS stands for DataBase ...
3	How To Use MySQL Well	After you went through a ...
4	Optimizing MySQL	In this tutorial we will show .... Run command line ...
5	1001 MySQL Tricks	1. Never run mysqld as root. 2. ...
8	MySQL Security	When configured properly, MySQL ...
9	Database Security	Configuring MySQL for ...
SET @@global.ft_boolean_syntax=DEFAULT;
DROP TABLE articles;