mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 04:46:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			Text
		
	
	
	
	
	
create table t1 (ft text) engine=myisam;
 | 
						|
insert into t1 values ('test1'),('test2');
 | 
						|
select distinct match(ft) against("test1" in boolean mode) from
 | 
						|
(select distinct ft from t1) as t;
 | 
						|
match(ft) against("test1" in boolean mode)
 | 
						|
1
 | 
						|
0
 | 
						|
drop table t1;
 |