mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Test of like
 | 
						|
#
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
create table t1 (a varchar(10), key(a));
 | 
						|
insert into t1 values ("a"),("abc"),("abcd"),("hello"),("test");
 | 
						|
explain select * from t1 where a like 'abc%';
 | 
						|
explain select * from t1 where a like concat('abc','%');
 | 
						|
select * from t1 where a like "abc%";
 | 
						|
select * from t1 where a like concat("abc","%");
 | 
						|
select * from t1 where a like "ABC%";
 | 
						|
select * from t1 where a like "test%";
 | 
						|
select * from t1 where a like "te_t";
 | 
						|
 | 
						|
#
 | 
						|
# The following will test the Turbo Boyer-Moore code
 | 
						|
#
 | 
						|
select * from t1 where a like "%a%";
 | 
						|
select * from t1 where a like "%abcd%";
 | 
						|
select * from t1 where a like "%abc\d%";
 | 
						|
 | 
						|
drop table t1;
 | 
						|
 | 
						|
 | 
						|
#
 | 
						|
# Test like with non-default character set
 | 
						|
#
 | 
						|
 | 
						|
SET NAMES koi8r;
 | 
						|
 | 
						|
CREATE TABLE t1 (a VARCHAR(10) CHARACTER SET koi8r);
 | 
						|
 | 
						|
INSERT INTO t1 VALUES ('ÆÙ×Á'),('æÙ×Á'),('Æù×Á'),('ÆÙ÷Á'),('ÆÙ×á'),('æù÷á');
 | 
						|
INSERT INTO t1 VALUES ('ÆÙ×ÁÐÒÏÌÄÖ'),('æÙ×ÁÐÒÏÌÄÖ'),('Æù×ÁÐÒÏÌÄÖ'),('ÆÙ÷ÁÐÒÏÌÄÖ');
 | 
						|
INSERT INTO t1 VALUES ('ÆÙ×áÐÒÏÌÄÖ'),('ÆÙ×ÁðÒÏÌÄÖ'),('ÆÙ×ÁÐòÏÌÄÖ'),('ÆÙ×ÁÐÒïÌÄÖ');
 | 
						|
INSERT INTO t1 VALUES ('ÆÙ×ÁÐÒÏìÄÖ'),('ÆÙ×ÁÐÒÏÌäÖ'),('ÆÙ×ÁÐÒÏÌÄö'),('æù÷áðòïìäö');
 | 
						|
 | 
						|
SELECT * FROM t1 WHERE a LIKE '%Æù×Á%';
 | 
						|
SELECT * FROM t1 WHERE a LIKE '%Æù×%';
 | 
						|
SELECT * FROM t1 WHERE a LIKE 'Æù×Á%';
 | 
						|
 | 
						|
DROP TABLE t1;
 |