⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fulltext2.result

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 RESULT
字号:
DROP TABLE IF EXISTS t1;CREATE TABLE t1 (i int(10) unsigned not null auto_increment primary key,a varchar(255) not null,FULLTEXT KEY (a)) ENGINE=MyISAM;repair table t1 quick;Table	Op	Msg_type	Msg_texttest.t1	repair	status	OKcheck table t1;Table	Op	Msg_type	Msg_texttest.t1	check	status	OKoptimize table t1;Table	Op	Msg_type	Msg_texttest.t1	optimize	status	OKcheck table t1;Table	Op	Msg_type	Msg_texttest.t1	check	status	OKselect count(*) from t1 where match a against ('aaaxxx');count(*)260select count(*) from t1 where match a against ('aaayyy');count(*)250select count(*) from t1 where match a against ('aaazzz');count(*)255select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)260select count(*) from t1 where match a against ('aaayyy' in boolean mode);count(*)250select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)255select count(*) from t1 where match a against ('aaaxxx aaayyy aaazzz');count(*)765select count(*) from t1 where match a against ('aaaxxx aaayyy aaazzz' in boolean mode);count(*)765select count(*) from t1 where match a against ('aaax*' in boolean mode);count(*)260select count(*) from t1 where match a against ('aaay*' in boolean mode);count(*)250select count(*) from t1 where match a against ('aaa*' in boolean mode);count(*)765insert t1 (a) values ('aaaxxx'),('aaayyy');insert t1 (a) values ('aaazzz'),('aaazzz'),('aaazzz'),('aaazzz'),('aaazzz');select count(*) from t1 where match a against ('aaaxxx');count(*)261select count(*) from t1 where match a against ('aaayyy');count(*)251select count(*) from t1 where match a against ('aaazzz');count(*)260insert t1 (a) values ('aaaxxx 000000');select count(*) from t1 where match a against ('000000');count(*)1delete from t1 where match a against ('000000');select count(*) from t1 where match a against ('000000');count(*)0select count(*) from t1 where match a against ('aaaxxx');count(*)261delete from t1 where match a against ('aaazzz');select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)261select count(*) from t1 where match a against ('aaayyy' in boolean mode);count(*)251select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)0select count(*) from t1 where a = 'aaaxxx';count(*)261select count(*) from t1 where a = 'aaayyy';count(*)251select count(*) from t1 where a = 'aaazzz';count(*)0insert t1 (a) values ('aaaxxx 000000');select count(*) from t1 where match a against ('000000');count(*)1update t1 set a='aaazzz' where match a against ('000000');select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)261select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)1update t1 set a='aaazzz' where a = 'aaaxxx';update t1 set a='aaaxxx' where a = 'aaayyy';select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)251select count(*) from t1 where match a against ('aaayyy' in boolean mode);count(*)0select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)262drop table t1;CREATE TABLE t1 (i int(10) unsigned not null auto_increment primary key,a varchar(255) not null,FULLTEXT KEY (a)) ENGINE=MyISAM;select count(*) from t1 where match a against ('aaaxxx');count(*)260select count(*) from t1 where match a against ('aaayyy');count(*)250select count(*) from t1 where match a against ('aaazzz');count(*)255select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)260select count(*) from t1 where match a against ('aaayyy' in boolean mode);count(*)250select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)255select count(*) from t1 where match a against ('aaaxxx aaayyy aaazzz');count(*)765select count(*) from t1 where match a against ('aaaxxx aaayyy aaazzz' in boolean mode);count(*)765select count(*) from t1 where match a against ('aaax*' in boolean mode);count(*)260select count(*) from t1 where match a against ('aaay*' in boolean mode);count(*)250select count(*) from t1 where match a against ('aaa*' in boolean mode);count(*)765insert t1 (a) values ('aaaxxx'),('aaayyy');insert t1 (a) values ('aaazzz'),('aaazzz'),('aaazzz'),('aaazzz'),('aaazzz');select count(*) from t1 where match a against ('aaaxxx');count(*)261select count(*) from t1 where match a against ('aaayyy');count(*)251select count(*) from t1 where match a against ('aaazzz');count(*)260insert t1 (a) values ('aaaxxx 000000');select count(*) from t1 where match a against ('000000');count(*)1delete from t1 where match a against ('000000');select count(*) from t1 where match a against ('000000');count(*)0select count(*) from t1 where match a against ('aaaxxx');count(*)261delete from t1 where match a against ('aaazzz');select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)261select count(*) from t1 where match a against ('aaayyy' in boolean mode);count(*)251select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)0select count(*) from t1 where a = 'aaaxxx';count(*)261select count(*) from t1 where a = 'aaayyy';count(*)251select count(*) from t1 where a = 'aaazzz';count(*)0insert t1 (a) values ('aaaxxx 000000');select count(*) from t1 where match a against ('000000');count(*)1update t1 set a='aaazzz' where match a against ('000000');select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)261select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)1update t1 set a='aaazzz' where a = 'aaaxxx';update t1 set a='aaaxxx' where a = 'aaayyy';select count(*) from t1 where match a against ('aaaxxx' in boolean mode);count(*)251select count(*) from t1 where match a against ('aaayyy' in boolean mode);count(*)0select count(*) from t1 where match a against ('aaazzz' in boolean mode);count(*)262drop table t1;set names utf8;create table t1(a text,fulltext(a)) collate=utf8_swedish_ci;insert into t1 values('test test '),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test'),('test');delete from t1 limit 1;truncate table t1;insert into t1 values('ab c d');update t1 set a='ab c d';select * from t1 where match a against('ab c' in boolean mode);adrop table t1;set names latin1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -