1
drop table if exists t1,t2;
2
select 'hello',"'hello'",'""hello""','''h''e''l''l''o''',"hel""lo",'hel\'lo';
3
hello 'hello' ""hello"" 'h'e'l'l'o' hel"lo hel'lo
4
hello 'hello' ""hello"" 'h'e'l'l'o' hel"lo hel'lo
5
select 'hello' 'monty';
8
select length('\n\t\r\b\0\_\%\\');
9
length('\n\t\r\b\0\_\%\\')
11
select char_length('\n\t\r\b\0\_\%\\');
12
char_length('\n\t\r\b\0\_\%\\')
14
select character_length('\n\t\r\b\0\_\%\\');
15
character_length('\n\t\r\b\0\_\%\\')
17
select length('\n\t\n\b\0\\_\\%\\');
18
length('\n\t\n\b\0\\_\\%\\')
20
select concat('monty',' was here ','again'),length('hello'),char(ascii('h')),ord('h');
21
concat('monty',' was here ','again') length('hello') char(ascii('h')) ord('h')
22
monty was here again 5 h 104
23
select hex(char(256));
26
select locate('he','hello'),locate('he','hello',2),locate('lo','hello',2) ;
27
locate('he','hello') locate('he','hello',2) locate('lo','hello',2)
29
select instr('hello','HE'), instr('hello',binary 'HE'), instr(binary 'hello','HE');
30
instr('hello','HE') instr('hello',binary 'HE') instr(binary 'hello','HE')
32
select position(binary 'll' in 'hello'),position('a' in binary 'hello');
33
position(binary 'll' in 'hello') position('a' in binary 'hello')
35
select left('hello',null), right('hello',null);
36
left('hello',null) right('hello',null)
38
select left('hello',2),right('hello',2),substring('hello',2,2),mid('hello',1,5) ;
39
left('hello',2) right('hello',2) substring('hello',2,2) mid('hello',1,5)
41
select concat('',left(right(concat('what ',concat('is ','happening')),9),4),'',substring('monty',5,1)) ;
42
concat('',left(right(concat('what ',concat('is ','happening')),9),4),'',substring('monty',5,1))
44
select substring_index('www.tcx.se','.',-2),substring_index('www.tcx.se','.',1);
45
substring_index('www.tcx.se','.',-2) substring_index('www.tcx.se','.',1)
47
select substring_index('www.tcx.se','tcx',1),substring_index('www.tcx.se','tcx',-1);
48
substring_index('www.tcx.se','tcx',1) substring_index('www.tcx.se','tcx',-1)
50
select substring_index('.tcx.se','.',-2),substring_index('.tcx.se','.tcx',-1);
51
substring_index('.tcx.se','.',-2) substring_index('.tcx.se','.tcx',-1)
53
select substring_index('aaaaaaaaa1','a',1);
54
substring_index('aaaaaaaaa1','a',1)
56
select substring_index('aaaaaaaaa1','aa',1);
57
substring_index('aaaaaaaaa1','aa',1)
59
select substring_index('aaaaaaaaa1','aa',2);
60
substring_index('aaaaaaaaa1','aa',2)
62
select substring_index('aaaaaaaaa1','aa',3);
63
substring_index('aaaaaaaaa1','aa',3)
65
select substring_index('aaaaaaaaa1','aa',4);
66
substring_index('aaaaaaaaa1','aa',4)
68
select substring_index('aaaaaaaaa1','aa',5);
69
substring_index('aaaaaaaaa1','aa',5)
71
select substring_index('aaaaaaaaa1','aaa',1);
72
substring_index('aaaaaaaaa1','aaa',1)
74
select substring_index('aaaaaaaaa1','aaa',2);
75
substring_index('aaaaaaaaa1','aaa',2)
77
select substring_index('aaaaaaaaa1','aaa',3);
78
substring_index('aaaaaaaaa1','aaa',3)
80
select substring_index('aaaaaaaaa1','aaa',4);
81
substring_index('aaaaaaaaa1','aaa',4)
83
select substring_index('aaaaaaaaa1','aaaa',1);
84
substring_index('aaaaaaaaa1','aaaa',1)
86
select substring_index('aaaaaaaaa1','aaaa',2);
87
substring_index('aaaaaaaaa1','aaaa',2)
89
select substring_index('aaaaaaaaa1','1',1);
90
substring_index('aaaaaaaaa1','1',1)
92
select substring_index('aaaaaaaaa1','a',-1);
93
substring_index('aaaaaaaaa1','a',-1)
95
select substring_index('aaaaaaaaa1','aa',-1);
96
substring_index('aaaaaaaaa1','aa',-1)
98
select substring_index('aaaaaaaaa1','aa',-2);
99
substring_index('aaaaaaaaa1','aa',-2)
101
select substring_index('aaaaaaaaa1','aa',-3);
102
substring_index('aaaaaaaaa1','aa',-3)
104
select substring_index('aaaaaaaaa1','aa',-4);
105
substring_index('aaaaaaaaa1','aa',-4)
107
select substring_index('aaaaaaaaa1','aa',-5);
108
substring_index('aaaaaaaaa1','aa',-5)
110
select substring_index('aaaaaaaaa1','aaa',-1);
111
substring_index('aaaaaaaaa1','aaa',-1)
113
select substring_index('aaaaaaaaa1','aaa',-2);
114
substring_index('aaaaaaaaa1','aaa',-2)
116
select substring_index('aaaaaaaaa1','aaa',-3);
117
substring_index('aaaaaaaaa1','aaa',-3)
119
select substring_index('aaaaaaaaa1','aaa',-4);
120
substring_index('aaaaaaaaa1','aaa',-4)
122
select substring_index('the king of thethe hill','the',-2);
123
substring_index('the king of thethe hill','the',-2)
125
select substring_index('the king of the the hill','the',-2);
126
substring_index('the king of the the hill','the',-2)
128
select substring_index('the king of the the hill','the',-2);
129
substring_index('the king of the the hill','the',-2)
131
select substring_index('the king of the the hill',' the ',-1);
132
substring_index('the king of the the hill',' the ',-1)
134
select substring_index('the king of the the hill',' the ',-2);
135
substring_index('the king of the the hill',' the ',-2)
137
select substring_index('the king of the the hill',' ',-1);
138
substring_index('the king of the the hill',' ',-1)
140
select substring_index('the king of the the hill',' ',-2);
141
substring_index('the king of the the hill',' ',-2)
143
select substring_index('the king of the the hill',' ',-3);
144
substring_index('the king of the the hill',' ',-3)
146
select substring_index('the king of the the hill',' ',-4);
147
substring_index('the king of the the hill',' ',-4)
149
select substring_index('the king of the the hill',' ',-5);
150
substring_index('the king of the the hill',' ',-5)
152
select substring_index('the king of the.the hill','the',-2);
153
substring_index('the king of the.the hill','the',-2)
155
select substring_index('the king of thethethe.the hill','the',-3);
156
substring_index('the king of thethethe.the hill','the',-3)
158
select substring_index('the king of thethethe.the hill','the',-1);
159
substring_index('the king of thethethe.the hill','the',-1)
161
select substring_index('the king of the the hill','the',1);
162
substring_index('the king of the the hill','the',1)
164
select substring_index('the king of the the hill','the',2);
165
substring_index('the king of the the hill','the',2)
167
select substring_index('the king of the the hill','the',3);
168
substring_index('the king of the the hill','the',3)
170
select concat(':',ltrim(' left '),':',rtrim(' right '),':');
171
concat(':',ltrim(' left '),':',rtrim(' right '),':')
173
select concat(':',trim(leading from ' left '),':',trim(trailing from ' right '),':');
174
concat(':',trim(leading from ' left '),':',trim(trailing from ' right '),':')
176
select concat(':',trim(LEADING FROM ' left'),':',trim(TRAILING FROM ' right '),':');
177
concat(':',trim(LEADING FROM ' left'),':',trim(TRAILING FROM ' right '),':')
179
select concat(':',trim(' m '),':',trim(BOTH FROM ' y '),':',trim('*' FROM '*s*'),':');
180
concat(':',trim(' m '),':',trim(BOTH FROM ' y '),':',trim('*' FROM '*s*'),':')
182
select concat(':',trim(BOTH 'ab' FROM 'ababmyabab'),':',trim(BOTH '*' FROM '***sql'),':');
183
concat(':',trim(BOTH 'ab' FROM 'ababmyabab'),':',trim(BOTH '*' FROM '***sql'),':')
185
select concat(':',trim(LEADING '.*' FROM '.*my'),':',trim(TRAILING '.*' FROM 'sql.*.*'),':');
186
concat(':',trim(LEADING '.*' FROM '.*my'),':',trim(TRAILING '.*' FROM 'sql.*.*'),':')
188
select TRIM("foo" FROM "foo"), TRIM("foo" FROM "foook"), TRIM("foo" FROM "okfoo");
189
TRIM("foo" FROM "foo") TRIM("foo" FROM "foook") TRIM("foo" FROM "okfoo")
191
select concat_ws(', ','monty','was here','again');
192
concat_ws(', ','monty','was here','again')
193
monty, was here, again
194
select concat_ws(NULL,'a'),concat_ws(',',NULL,'');
195
concat_ws(NULL,'a') concat_ws(',',NULL,'')
197
select concat_ws(',','',NULL,'a');
198
concat_ws(',','',NULL,'a')
200
SELECT CONCAT('"',CONCAT_WS('";"',repeat('a',60),repeat('b',60),repeat('c',60),repeat('d',100)), '"');
201
CONCAT('"',CONCAT_WS('";"',repeat('a',60),repeat('b',60),repeat('c',60),repeat('d',100)), '"')
202
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb";"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc";"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"
203
select insert('txs',2,1,'hi'),insert('is ',4,0,'a'),insert('txxxxt',2,4,'es');
204
insert('txs',2,1,'hi') insert('is ',4,0,'a') insert('txxxxt',2,4,'es')
206
select replace('aaaa','a','b'),replace('aaaa','aa','b'),replace('aaaa','a','bb'),replace('aaaa','','b'),replace('bbbb','a','c');
207
replace('aaaa','a','b') replace('aaaa','aa','b') replace('aaaa','a','bb') replace('aaaa','','b') replace('bbbb','a','c')
208
bbbb bb bbbbbbbb aaaa bbbb
209
select replace(concat(lcase(concat('THIS',' ','IS',' ','A',' ')),ucase('false'),' ','test'),'FALSE','REAL') ;
210
replace(concat(lcase(concat('THIS',' ','IS',' ','A',' ')),ucase('false'),' ','test'),'FALSE','REAL')
215
select repeat('monty',5),concat('*',space(5),'*');
216
repeat('monty',5) concat('*',space(5),'*')
217
montymontymontymontymonty * *
218
select reverse('abc'),reverse('abcd');
219
reverse('abc') reverse('abcd')
221
select rpad('a',4,'1'),rpad('a',4,'12'),rpad('abcd',3,'12'), rpad(11, 10 , 22), rpad("ab", 10, 22);
222
rpad('a',4,'1') rpad('a',4,'12') rpad('abcd',3,'12') rpad(11, 10 , 22) rpad("ab", 10, 22)
223
a111 a121 abc 1122222222 ab22222222
224
select lpad('a',4,'1'),lpad('a',4,'12'),lpad('abcd',3,'12'), lpad(11, 10 , 22);
225
lpad('a',4,'1') lpad('a',4,'12') lpad('abcd',3,'12') lpad(11, 10 , 22)
226
111a 121a abc 2222222211
227
select rpad(741653838,17,'0'),lpad(741653838,17,'0');
228
rpad(741653838,17,'0') lpad(741653838,17,'0')
229
74165383800000000 00000000741653838
230
select rpad('abcd',7,'ab'),lpad('abcd',7,'ab');
231
rpad('abcd',7,'ab') lpad('abcd',7,'ab')
233
select rpad('abcd',1,'ab'),lpad('abcd',1,'ab');
234
rpad('abcd',1,'ab') lpad('abcd',1,'ab')
236
select rpad('STRING', 20, CONCAT('p','a','d') );
237
rpad('STRING', 20, CONCAT('p','a','d') )
239
select lpad('STRING', 20, CONCAT('p','a','d') );
240
lpad('STRING', 20, CONCAT('p','a','d') )
242
select LEAST(NULL,'HARRY','HARRIOT',NULL,'HAROLD'),GREATEST(NULL,'HARRY','HARRIOT',NULL,'HAROLD');
243
LEAST(NULL,'HARRY','HARRIOT',NULL,'HAROLD') GREATEST(NULL,'HARRY','HARRIOT',NULL,'HAROLD')
245
select quote('\'\"\\test');
248
select quote(concat('abc\'', '\\cba'));
249
quote(concat('abc\'', '\\cba'))
251
select quote(1/0), quote('\0\Z');
252
quote(1/0) quote('\0\Z')
255
Error 1365 Division by 0
256
select length(quote(concat(char(0),"test")));
257
length(quote(concat(char(0),"test")))
259
select hex(quote(concat(char(224),char(227),char(230),char(231),char(232),char(234),char(235))));
260
hex(quote(concat(char(224),char(227),char(230),char(231),char(232),char(234),char(235))))
262
select unhex(hex("foobar")), hex(unhex("1234567890ABCDEF")), unhex("345678"), unhex(NULL);
263
unhex(hex("foobar")) hex(unhex("1234567890ABCDEF")) unhex("345678") unhex(NULL)
264
foobar 1234567890ABCDEF 4Vx NULL
265
select hex(unhex("1")), hex(unhex("12")), hex(unhex("123")), hex(unhex("1234")), hex(unhex("12345")), hex(unhex("123456"));
266
hex(unhex("1")) hex(unhex("12")) hex(unhex("123")) hex(unhex("1234")) hex(unhex("12345")) hex(unhex("123456"))
267
01 12 0123 1234 012345 123456
268
select concat('a', quote(NULL));
269
concat('a', quote(NULL))
274
select insert("aa",100,1,"b"),insert("aa",1,3,"b"),left("aa",-1),substring("a",1,2);
275
insert("aa",100,1,"b") insert("aa",1,3,"b") left("aa",-1) substring("a",1,2)
277
select elt(2,1),field(NULL,"a","b","c"),reverse("");
278
elt(2,1) field(NULL,"a","b","c") reverse("")
280
select locate("a","b",2),locate("","a",1);
281
locate("a","b",2) locate("","a",1)
283
select ltrim("a"),rtrim("a"),trim(BOTH "" from "a"),trim(BOTH " " from "a");
284
ltrim("a") rtrim("a") trim(BOTH "" from "a") trim(BOTH " " from "a")
286
select substring_index("www.tcx.se","",3);
287
substring_index("www.tcx.se","",3)
289
select length(repeat("a",100000000)),length(repeat("a",1000*64));
290
length(repeat("a",100000000)) length(repeat("a",1000*64))
293
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
294
select position("0" in "baaa" in (1)),position("0" in "1" in (1,2,3)),position("sql" in ("mysql"));
295
position("0" in "baaa" in (1)) position("0" in "1" in (1,2,3)) position("sql" in ("mysql"))
298
Warning 1292 Truncated incorrect DOUBLE value: 'baaa'
299
select position(("1" in (1,2,3)) in "01");
300
position(("1" in (1,2,3)) in "01")
302
select length(repeat("a",65500)),length(concat(repeat("a",32000),repeat("a",32000))),length(replace("aaaaa","a",concat(repeat("a",10000)))),length(insert(repeat("a",40000),1,30000,repeat("b",50000)));
303
length(repeat("a",65500)) length(concat(repeat("a",32000),repeat("a",32000))) length(replace("aaaaa","a",concat(repeat("a",10000)))) length(insert(repeat("a",40000),1,30000,repeat("b",50000)))
304
65500 64000 50000 60000
305
select length(repeat("a",1000000)),length(concat(repeat("a",32000),repeat("a",32000),repeat("a",32000))),length(replace("aaaaa","a",concat(repeat("a",32000)))),length(insert(repeat("a",48000),1,1000,repeat("a",48000)));
306
length(repeat("a",1000000)) length(concat(repeat("a",32000),repeat("a",32000),repeat("a",32000))) length(replace("aaaaa","a",concat(repeat("a",32000)))) length(insert(repeat("a",48000),1,1000,repeat("a",48000)))
307
1000000 96000 160000 95000
308
create table t1 ( domain char(50) );
309
insert into t1 VALUES ("hello.de" ), ("test.de" );
310
select domain from t1 where concat('@', trim(leading '.' from concat('.', domain))) = '@hello.de';
313
select domain from t1 where concat('@', trim(leading '.' from concat('.', domain))) = '@test.de';
317
CREATE TEMPORARY TABLE t1 (
319
title varchar(255) default NULL,
320
prio int default NULL,
321
category int default NULL,
322
program int default NULL,
324
created datetime default NULL,
325
modified timestamp NOT NULL,
326
bugstatus int default NULL,
327
submitter int default NULL
329
INSERT INTO t1 VALUES (1,'Link',1,1,1,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa','2001-02-28 08:40:16',20010228084016,0,4);
330
SELECT CONCAT('"',CONCAT_WS('";"',title,prio,category,program,bugdesc,created,modified+0,bugstatus,submitter), '"') FROM t1;
331
CONCAT('"',CONCAT_WS('";"',title,prio,category,program,bugdesc,created,modified+0,bugstatus,submitter), '"')
332
"Link";"1";"1";"1";"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";"2001-02-28 08:40:16";"20010228084016";"0";"4"
333
SELECT CONCAT('"',CONCAT_WS('";"',title,prio,category,program,bugstatus,submitter), '"') FROM t1;
334
CONCAT('"',CONCAT_WS('";"',title,prio,category,program,bugstatus,submitter), '"')
335
"Link";"1";"1";"1";"0";"4"
336
SELECT CONCAT_WS('";"',title,prio,category,program,bugdesc,created,modified+0,bugstatus,submitter) FROM t1;
337
CONCAT_WS('";"',title,prio,category,program,bugdesc,created,modified+0,bugstatus,submitter)
338
Link";"1";"1";"1";"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";"2001-02-28 08:40:16";"20010228084016";"0";"4
339
SELECT bugdesc, REPLACE(bugdesc, 'xxxxxxxxxxxxxxxxxxxx', 'bbbbbbbbbbbbbbbbbbbb') from t1 group by bugdesc;
340
bugdesc REPLACE(bugdesc, 'xxxxxxxxxxxxxxxxxxxx', 'bbbbbbbbbbbbbbbbbbbb')
341
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
343
CREATE TEMPORARY TABLE t1 (id int NOT NULL auto_increment, tmp text NOT NULL, KEY id (id)) ENGINE=MyISAM;
344
INSERT INTO t1 VALUES (1, 'a545f661efdd1fb66fdee3aab79945bf');
347
wid int NOT NULL auto_increment,
348
data_podp date default NULL,
349
status_wnio enum('nowy','podp','real','arch') NOT NULL default 'nowy',
352
INSERT INTO t1 VALUES (8,NULL,'real');
353
INSERT INTO t1 VALUES (9,NULL,'nowy');
354
SELECT elt(status_wnio,data_podp) FROM t1 GROUP BY wid;
355
elt(status_wnio,data_podp)
359
CREATE TEMPORARY TABLE t1 (title text) ENGINE=MyISAM;
360
INSERT INTO t1 VALUES ('Congress reconvenes in September to debate welfare and adult education');
361
INSERT INTO t1 VALUES ('House passes the CAREERS bill');
362
SELECT CONCAT("</a>",RPAD("",(55 - LENGTH(title)),".")) from t1;
363
CONCAT("</a>",RPAD("",(55 - LENGTH(title)),"."))
365
</a>..........................
367
CREATE TABLE t1 (i int, j int);
368
INSERT INTO t1 VALUES (1,1),(2,2);
369
SELECT DISTINCT i, ELT(j, '345', '34') FROM t1;
370
i ELT(j, '345', '34')
374
create table t1(a char(4));
375
insert into t1 values ('one'),(NULL),('two'),('four');
376
select a, quote(a), isnull(quote(a)), quote(a) is null, ifnull(quote(a), 'n') from t1;
377
a quote(a) isnull(quote(a)) quote(a) is null ifnull(quote(a), 'n')
381
four 'four' 0 0 'four'
383
select trim(trailing 'foo' from 'foo');
384
trim(trailing 'foo' from 'foo')
386
select trim(leading 'foo' from 'foo');
387
trim(leading 'foo' from 'foo')
389
select quote(ltrim(concat(' ', 'a')));
390
quote(ltrim(concat(' ', 'a')))
392
select quote(trim(concat(' ', 'a')));
393
quote(trim(concat(' ', 'a')))
395
CREATE TABLE t1 SELECT 1 UNION SELECT 2 UNION SELECT 3;
396
SELECT QUOTE('A') FROM t1;
402
select SUBSTR('abcdefg',3,2);
403
SUBSTR('abcdefg',3,2)
405
select SUBSTRING('abcdefg',3,2);
406
SUBSTRING('abcdefg',3,2)
408
select SUBSTR('abcdefg',-3,2);
409
SUBSTR('abcdefg',-3,2)
411
select SUBSTR('abcdefg',-1,5);
412
SUBSTR('abcdefg',-1,5)
414
select SUBSTR('abcdefg',0,0);
415
SUBSTR('abcdefg',0,0)
417
select SUBSTR('abcdefg',-1,-1);
418
SUBSTR('abcdefg',-1,-1)
420
select SUBSTR('abcdefg',1,-1);
421
SUBSTR('abcdefg',1,-1)
423
select substring_index("1abcd;2abcd;3abcd;4abcd", ';', 2),substring_index("1abcd;2abcd;3abcd;4abcd", ';', -2);
424
substring_index("1abcd;2abcd;3abcd;4abcd", ';', 2) substring_index("1abcd;2abcd;3abcd;4abcd", ';', -2)
425
1abcd;2abcd 3abcd;4abcd
426
explain extended select concat('*',space(5),'*');
427
id select_type table type possible_keys key key_len ref rows filtered Extra
428
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
430
Note 1003 select concat('*',repeat(' ',5),'*') AS `concat('*',space(5),'*')`
431
explain extended select reverse('abc');
432
id select_type table type possible_keys key key_len ref rows filtered Extra
433
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
435
Note 1003 select reverse('abc') AS `reverse('abc')`
436
explain extended select rpad('a',4,'1');
437
id select_type table type possible_keys key key_len ref rows filtered Extra
438
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
440
Note 1003 select rpad('a',4,'1') AS `rpad('a',4,'1')`
441
explain extended select lpad('a',4,'1');
442
id select_type table type possible_keys key key_len ref rows filtered Extra
443
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
445
Note 1003 select lpad('a',4,'1') AS `lpad('a',4,'1')`
446
explain extended select concat_ws(',','',NULL,'a');
447
id select_type table type possible_keys key key_len ref rows filtered Extra
448
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
450
Note 1003 select concat_ws(',','',NULL,'a') AS `concat_ws(',','',NULL,'a')`
451
explain extended select elt(2,1);
452
id select_type table type possible_keys key key_len ref rows filtered Extra
453
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
455
Note 1003 select elt(2,1) AS `elt(2,1)`
456
explain extended select locate("a","b",2);
457
id select_type table type possible_keys key key_len ref rows filtered Extra
458
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
460
Note 1003 select locate('a','b',2) AS `locate("a","b",2)`
461
explain extended select char(0);
462
id select_type table type possible_keys key key_len ref rows filtered Extra
463
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
465
Note 1003 select char(0) AS `char(0)`
466
explain extended select conv(130,16,10);
467
id select_type table type possible_keys key key_len ref rows filtered Extra
468
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
470
Note 1003 select conv(130,16,10) AS `conv(130,16,10)`
471
explain extended select hex(130);
472
id select_type table type possible_keys key key_len ref rows filtered Extra
473
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
475
Note 1003 select hex(130) AS `hex(130)`
476
explain extended select binary 'HE';
477
id select_type table type possible_keys key key_len ref rows filtered Extra
478
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
480
Note 1003 select cast('HE' as char charset binary) AS `binary 'HE'`
481
explain extended select collation(conv(130,16,10));
482
id select_type table type possible_keys key key_len ref rows filtered Extra
483
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
485
Note 1003 select collation(conv(130,16,10)) AS `collation(conv(130,16,10))`
486
explain extended select length('\n\t\r\b\0\_\%\\');
487
id select_type table type possible_keys key key_len ref rows filtered Extra
488
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
490
Note 1003 select length('\n \r\0\\_\\%\\') AS `length('\n\t\r\b\0\_\%\\')`
491
explain extended select concat('monty',' was here ','again');
492
id select_type table type possible_keys key key_len ref rows filtered Extra
493
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
495
Note 1003 select concat('monty',' was here ','again') AS `concat('monty',' was here ','again')`
496
explain extended select length('hello');
497
id select_type table type possible_keys key key_len ref rows filtered Extra
498
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
500
Note 1003 select length('hello') AS `length('hello')`
501
explain extended select char(ascii('h'));
502
id select_type table type possible_keys key key_len ref rows filtered Extra
503
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
505
Note 1003 select char(ascii('h')) AS `char(ascii('h'))`
506
explain extended select ord('h');
507
id select_type table type possible_keys key key_len ref rows filtered Extra
508
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
510
Note 1003 select ord('h') AS `ord('h')`
511
explain extended select quote(1/0);
512
id select_type table type possible_keys key key_len ref rows filtered Extra
513
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
515
Note 1003 select quote((1 / 0)) AS `quote(1/0)`
516
explain extended select crc32("123");
517
id select_type table type possible_keys key key_len ref rows filtered Extra
518
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
520
Note 1003 select crc32('123') AS `crc32("123")`
521
explain extended select replace('aaaa','a','b');
522
id select_type table type possible_keys key key_len ref rows filtered Extra
523
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
525
Note 1003 select replace('aaaa','a','b') AS `replace('aaaa','a','b')`
526
explain extended select insert('txs',2,1,'hi');
527
id select_type table type possible_keys key key_len ref rows filtered Extra
528
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
530
Note 1003 select insert('txs',2,1,'hi') AS `insert('txs',2,1,'hi')`
531
explain extended select SUBSTR('abcdefg',3,2);
532
id select_type table type possible_keys key key_len ref rows filtered Extra
533
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
535
Note 1003 select substr('abcdefg',3,2) AS `SUBSTR('abcdefg',3,2)`
536
explain extended select substring_index("1abcd;2abcd;3abcd;4abcd", ';', 2);
537
id select_type table type possible_keys key key_len ref rows filtered Extra
538
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used
540
Note 1003 select substring_index('1abcd;2abcd;3abcd;4abcd',';',2) AS `substring_index("1abcd;2abcd;3abcd;4abcd", ';', 2)`
541
SELECT lpad(12345, 5, "#");
544
SELECT conv(71, 10, 36), conv('1Z', 36, 10);
545
conv(71, 10, 36) conv('1Z', 36, 10)
547
SELECT conv(71, 10, 37), conv('1Z', 37, 10), conv(0,1,10),conv(0,0,10), conv(0,-1,10);
548
conv(71, 10, 37) conv('1Z', 37, 10) conv(0,1,10) conv(0,0,10) conv(0,-1,10)
549
NULL NULL NULL NULL NULL
550
create table t1 (id int, str varchar(10));
551
insert into t1 values (1,'aaaaaaaaaa'), (2,'bbbbbbbbbb');
552
create table t2 (id int, str varchar(10));
553
insert into t2 values (1,'cccccccccc'), (2,'dddddddddd');
554
select substring(concat(t1.str, t2.str), 1, 15) "name" from t1, t2
555
where t2.id=t1.id order by name;
560
create table t1 (c1 INT, c2 INT);
561
insert into t1 values ('21474836461','21474836461');
562
ERROR 22003: Out of range value for column 'c1' at row 1
563
insert into t1 values ('-21474836461','-21474836461');
564
ERROR 22003: Out of range value for column 'c1' at row 1
568
select left(1234, 3) + 0;
571
create table t1 (a int not null primary key, b varchar(40), c datetime);
572
insert into t1 (a,b,c) values (1,'Tom','2004-12-10 12:13:14'),(2,'ball games','2004-12-10 12:13:14'), (3,'Basil','2004-12-10 12:13:14'), (4,'Dean','2004-12-10 12:13:14'),(5,'Ellis','2004-12-10 12:13:14'), (6,'Serg','2004-12-10 12:13:14'), (7,'Sergei','2004-12-10 12:13:14'),(8,'Georg','2004-12-10 12:13:14'),(9,'Salle','2004-12-10 12:13:14'),(10,'Sinisa','2004-12-10 12:13:14');
573
select count(*) as total, left(c,10) as reg from t1 group by reg order by reg desc limit 0,12;
577
select trim(null from 'kate') as "must_be_null";
580
select trim('xyz' from null) as "must_be_null";
583
select trim(leading NULL from 'kate') as "must_be_null";
586
select trim(trailing NULL from 'xyz') as "must_be_null";
589
CREATE TEMPORARY TABLE t1 (
590
id int NOT NULL auto_increment,
591
a bigint default NULL,
594
INSERT INTO t1 VALUES ('0','16307858876001849059');
595
ERROR 22003: Out of range value for column 'a' at row 1
596
SELECT CONV('e251273eb74a8ee3', 16, 10);
597
CONV('e251273eb74a8ee3', 16, 10)
602
WHERE a = 16307858876001849059;
603
id select_type table type possible_keys key key_len ref rows Extra
604
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
608
WHERE a = CONV('e251273eb74a8ee3', 16, 10);
609
id select_type table type possible_keys key key_len ref rows Extra
610
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
612
SELECT CHAR(NULL,121,83,81,'76') as my_column;
615
SELECT CHAR_LENGTH(CHAR(NULL,121,83,81,'76')) as my_column;
618
CREATE TABLE t1 (id int PRIMARY KEY, str char(255) NOT NULL);
619
CREATE TABLE t2 (id int NOT NULL UNIQUE);
620
INSERT INTO t2 VALUES (1),(2);
621
INSERT INTO t1 VALUES (2, 'not valid');
623
select field(0,NULL,1,0), field("",NULL,"bar",""), field(0.0,NULL,1.0,0.0);
624
field(0,NULL,1,0) field("",NULL,"bar","") field(0.0,NULL,1.0,0.0)
626
select field(NULL,1,2,NULL), field(NULL,1,2,0);
627
field(NULL,1,2,NULL) field(NULL,1,2,0)
629
CREATE TABLE t1 (str varchar(20) PRIMARY KEY);
630
CREATE TABLE t2 (num int primary key);
631
INSERT INTO t1 VALUES ('notnumber');
632
INSERT INTO t2 VALUES (0), (1);
633
SELECT * FROM t1, t2 WHERE num=str;
636
SELECT * FROM t1, t2 WHERE num=substring(str from 1 for 6);
641
id int NOT NULL auto_increment,
642
pc int NOT NULL default '0',
643
title varchar(20) default NULL,
646
INSERT INTO t1 VALUES
650
SELECT t1.id, CONCAT_WS('->', t3.title, t2.title, t1.title) as col1
651
FROM t1 LEFT JOIN t1 AS t2 ON t1.pc=t2.id
652
LEFT JOIN t1 AS t3 ON t2.pc=t3.id;
657
SELECT t1.id, CONCAT_WS('->', t3.title, t2.title, t1.title) as col1
658
FROM t1 LEFT JOIN t1 AS t2 ON t1.pc=t2.id
659
LEFT JOIN t1 AS t3 ON t2.pc=t3.id
660
WHERE CONCAT_WS('->', t3.title, t2.title, t1.title) LIKE '%Toys%';
665
trackid int NOT NULL auto_increment,
666
trackname varchar(100) NOT NULL default '',
667
PRIMARY KEY (trackid)
670
artistid int NOT NULL auto_increment,
671
artistname varchar(100) NOT NULL default '',
672
PRIMARY KEY (artistid)
675
trackid int NOT NULL,
676
artistid int NOT NULL,
677
PRIMARY KEY (trackid,artistid)
679
INSERT INTO t1 VALUES (1, 'April In Paris'), (2, 'Autumn In New York');
680
INSERT INTO t2 VALUES (1, 'Vernon Duke');
681
INSERT INTO t3 VALUES (1,1);
682
SELECT CONCAT_WS(' ', trackname, artistname) trackname, artistname
683
FROM t1 LEFT JOIN t3 ON t1.trackid=t3.trackid
684
LEFT JOIN t2 ON t2.artistid=t3.artistid
685
WHERE CONCAT_WS(' ', trackname, artistname) LIKE '%In%';
687
April In Paris Vernon Duke Vernon Duke
688
Autumn In New York NULL
690
create table t1 (b varchar(5));
691
insert t1 values ('ab'), ('abc'), ('abcd'), ('abcde');
692
select *,substring(b,1),substring(b,-1),substring(b,-2),substring(b,-3),substring(b,-4),substring(b,-5) from t1;
693
b substring(b,1) substring(b,-1) substring(b,-2) substring(b,-3) substring(b,-4) substring(b,-5)
696
abcd abcd d cd bcd abcd
697
abcde abcde e de cde bcde abcde
698
select * from (select *,substring(b,1),substring(b,-1),substring(b,-2),substring(b,-3),substring(b,-4),substring(b,-5) from t1) t;
699
b substring(b,1) substring(b,-1) substring(b,-2) substring(b,-3) substring(b,-4) substring(b,-5)
702
abcd abcd d cd bcd abcd
703
abcde abcde e de cde bcde abcde
705
select hex(29223372036854775809), hex(-29223372036854775809);
706
hex(29223372036854775809) hex(-29223372036854775809)
707
FFFFFFFFFFFFFFFF FFFFFFFFFFFFFFFF
708
create table t1 (i int);
709
insert into t1 values (1000000000),(1);
710
select lpad(i, 7, ' ') as t from t1;
711
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
712
def t 8 7 7 Y 128 31 63
716
select rpad(i, 7, ' ') as t from t1;
717
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
718
def t 8 7 7 Y 128 31 63
723
select load_file("lkjlkj");
726
select ifnull(load_file("lkjlkj"),"it's null");
727
ifnull(load_file("lkjlkj"),"it's null")
729
CREATE TABLE t1 (a varchar(10));
730
INSERT INTO t1 VALUES ('abc'), ('xyz');
731
SELECT a, CONCAT(a,' ',a) AS c FROM t1
732
HAVING LEFT(c,LENGTH(c)-INSTR(REVERSE(c)," ")) = a;
736
SELECT a, CONCAT(a,' ',a) AS c FROM t1
737
HAVING LEFT(CONCAT(a,' ',a),
738
LENGTH(CONCAT(a,' ',a))-
739
INSTR(REVERSE(CONCAT(a,' ',a))," ")) = a;
744
CREATE TABLE t1 (s varchar(10));
745
INSERT INTO t1 VALUES ('yadda'), ('yaddy');
746
EXPLAIN EXTENDED SELECT s FROM t1 WHERE TRIM(s) > 'ab';
747
id select_type table type possible_keys key key_len ref rows filtered Extra
748
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 100.00 Using where
750
Note 1003 select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(`test`.`t1`.`s`) > 'ab')
751
EXPLAIN EXTENDED SELECT s FROM t1 WHERE TRIM('y' FROM s) > 'ab';
752
id select_type table type possible_keys key key_len ref rows filtered Extra
753
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 100.00 Using where
755
Note 1003 select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(both 'y' from `test`.`t1`.`s`) > 'ab')
756
EXPLAIN EXTENDED SELECT s FROM t1 WHERE TRIM(LEADING 'y' FROM s) > 'ab';
757
id select_type table type possible_keys key key_len ref rows filtered Extra
758
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 100.00 Using where
760
Note 1003 select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(leading 'y' from `test`.`t1`.`s`) > 'ab')
761
EXPLAIN EXTENDED SELECT s FROM t1 WHERE TRIM(TRAILING 'y' FROM s) > 'ab';
762
id select_type table type possible_keys key key_len ref rows filtered Extra
763
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 100.00 Using where
765
Note 1003 select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(trailing 'y' from `test`.`t1`.`s`) > 'ab')
766
EXPLAIN EXTENDED SELECT s FROM t1 WHERE TRIM(BOTH 'y' FROM s) > 'ab';
767
id select_type table type possible_keys key key_len ref rows filtered Extra
768
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 100.00 Using where
770
Note 1003 select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(both 'y' from `test`.`t1`.`s`) > 'ab')
772
create TEMPORARY table t1 (a bigint not null)engine=myisam;
773
insert into t1 set a = 1024*1024*1024*4;
775
create TEMPORARY table t1 (a char(36) not null)engine=myisam;
776
insert ignore into t1 set a = ' ';
777
insert ignore into t1 set a = ' ';
778
select * from t1 order by (oct(a));
784
create table t1 (d decimal default null);
785
insert into t1 values (null);
786
select format(d, 2) from t1;
790
create table t1 (c varchar(40));
791
insert into t1 values ('y,abc'),('y,abc');
792
select c, substring_index(lcase(c), @q:=',', -1) as res from t1;
797
select cast(rtrim(' 20.06 ') as decimal(19,2));
798
cast(rtrim(' 20.06 ') as decimal(19,2))
800
select cast(ltrim(' 20.06 ') as decimal(19,2));
801
cast(ltrim(' 20.06 ') as decimal(19,2))
803
select cast(rtrim(ltrim(' 20.06 ')) as decimal(19,2));
804
cast(rtrim(ltrim(' 20.06 ')) as decimal(19,2))
806
select conv("18383815659218730760",10,10) + 0;
807
conv("18383815659218730760",10,10) + 0
809
select "18383815659218730760" + 0;
810
"18383815659218730760" + 0
812
CREATE TABLE t1 (code varchar(10));
813
INSERT INTO t1 VALUES ('a12'), ('A12'), ('a13');
814
SELECT ASCII(code), code FROM t1 WHERE code='A12';
818
SELECT ASCII(code), code FROM t1 WHERE code='A12' AND ASCII(code)=65;
821
INSERT INTO t1 VALUES ('a12 '), ('A12 ');
822
SELECT LENGTH(code), code FROM t1 WHERE code='A12';
828
SELECT LENGTH(code), code FROM t1 WHERE code='A12' AND LENGTH(code)=5;
831
ALTER TABLE t1 ADD INDEX (code);
832
CREATE TABLE t2 (id varchar(10) PRIMARY KEY);
833
INSERT INTO t2 VALUES ('a11'), ('a12'), ('a13'), ('a14');
834
SELECT * FROM t1 INNER JOIN t2 ON t1.code=t2.id
835
WHERE t2.id='a12' AND (LENGTH(code)=5 OR code < 'a00');
839
SELECT * FROM t1 INNER JOIN t2 ON code=id
840
WHERE id='a12' AND (LENGTH(code)=5 OR code < 'a00');
841
id select_type table type possible_keys key key_len ref rows filtered Extra
842
1 SIMPLE t2 const PRIMARY PRIMARY 42 const 1 100.00
843
1 SIMPLE t1 ref code code 43 const 3 100.00 Using where
845
Note 1003 select `test`.`t1`.`code` AS `code`,'a12' AS `id` from `test`.`t1` join `test`.`t2` where ((`test`.`t1`.`code` = 'a12') and <cache>(('a12' = 'a12')) and ((length(`test`.`t1`.`code`) = 5) or <cache>(('a12' < 'a00'))))
847
select benchmark(-1, 1);
851
Error 1411 Incorrect count value: '-1' for function benchmark
853
select format(pi(), (1+1));
856
select format(pi(), (select 3));
857
format(pi(), (select 3))
859
select format(pi(), @dec);
863
select benchmark(10, pi());
866
select benchmark(5+5, pi());
869
select benchmark((select 10), pi());
870
benchmark((select 10), pi())
872
select benchmark(@bench_count, pi());
873
benchmark(@bench_count, pi())
875
select locate('he','hello',-2);
876
locate('he','hello',-2)
878
select locate('lo','hello',-4294967295);
879
locate('lo','hello',-4294967295)
881
select locate('lo','hello',4294967295);
882
locate('lo','hello',4294967295)
884
select locate('lo','hello',-4294967296);
885
locate('lo','hello',-4294967296)
887
select locate('lo','hello',4294967296);
888
locate('lo','hello',4294967296)
890
select locate('lo','hello',-4294967297);
891
locate('lo','hello',-4294967297)
893
select locate('lo','hello',4294967297);
894
locate('lo','hello',4294967297)
896
select locate('lo','hello',-18446744073709551615);
897
locate('lo','hello',-18446744073709551615)
900
Error 1292 Truncated incorrect DECIMAL value: ''
901
select locate('lo','hello',18446744073709551615);
902
locate('lo','hello',18446744073709551615)
904
select locate('lo','hello',-18446744073709551616);
905
locate('lo','hello',-18446744073709551616)
908
Error 1292 Truncated incorrect DECIMAL value: ''
909
select locate('lo','hello',18446744073709551616);
910
locate('lo','hello',18446744073709551616)
913
Error 1292 Truncated incorrect DECIMAL value: ''
914
select locate('lo','hello',-18446744073709551617);
915
locate('lo','hello',-18446744073709551617)
918
Error 1292 Truncated incorrect DECIMAL value: ''
919
select locate('lo','hello',18446744073709551617);
920
locate('lo','hello',18446744073709551617)
923
Error 1292 Truncated incorrect DECIMAL value: ''
924
select left('hello', 10);
927
select left('hello', 0);
930
select left('hello', -1);
933
select left('hello', -4294967295);
934
left('hello', -4294967295)
936
select left('hello', 4294967295);
937
left('hello', 4294967295)
939
select left('hello', -4294967296);
940
left('hello', -4294967296)
942
select left('hello', 4294967296);
943
left('hello', 4294967296)
945
select left('hello', -4294967297);
946
left('hello', -4294967297)
948
select left('hello', 4294967297);
949
left('hello', 4294967297)
951
select left('hello', -18446744073709551615);
952
left('hello', -18446744073709551615)
955
Error 1292 Truncated incorrect DECIMAL value: ''
956
Error 1292 Truncated incorrect DECIMAL value: ''
957
select left('hello', 18446744073709551615);
958
left('hello', 18446744073709551615)
960
select left('hello', -18446744073709551616);
961
left('hello', -18446744073709551616)
964
Error 1292 Truncated incorrect DECIMAL value: ''
965
Error 1292 Truncated incorrect DECIMAL value: ''
966
select left('hello', 18446744073709551616);
967
left('hello', 18446744073709551616)
970
Error 1292 Truncated incorrect DECIMAL value: ''
971
Error 1292 Truncated incorrect DECIMAL value: ''
972
select left('hello', -18446744073709551617);
973
left('hello', -18446744073709551617)
976
Error 1292 Truncated incorrect DECIMAL value: ''
977
Error 1292 Truncated incorrect DECIMAL value: ''
978
select left('hello', 18446744073709551617);
979
left('hello', 18446744073709551617)
982
Error 1292 Truncated incorrect DECIMAL value: ''
983
Error 1292 Truncated incorrect DECIMAL value: ''
984
select right('hello', 10);
987
select right('hello', 0);
990
select right('hello', -1);
993
select right('hello', -4294967295);
994
right('hello', -4294967295)
996
select right('hello', 4294967295);
997
right('hello', 4294967295)
999
select right('hello', -4294967296);
1000
right('hello', -4294967296)
1002
select right('hello', 4294967296);
1003
right('hello', 4294967296)
1005
select right('hello', -4294967297);
1006
right('hello', -4294967297)
1008
select right('hello', 4294967297);
1009
right('hello', 4294967297)
1011
select right('hello', -18446744073709551615);
1012
right('hello', -18446744073709551615)
1015
Error 1292 Truncated incorrect DECIMAL value: ''
1016
Error 1292 Truncated incorrect DECIMAL value: ''
1017
select right('hello', 18446744073709551615);
1018
right('hello', 18446744073709551615)
1020
select right('hello', -18446744073709551616);
1021
right('hello', -18446744073709551616)
1024
Error 1292 Truncated incorrect DECIMAL value: ''
1025
Error 1292 Truncated incorrect DECIMAL value: ''
1026
select right('hello', 18446744073709551616);
1027
right('hello', 18446744073709551616)
1030
Error 1292 Truncated incorrect DECIMAL value: ''
1031
Error 1292 Truncated incorrect DECIMAL value: ''
1032
select right('hello', -18446744073709551617);
1033
right('hello', -18446744073709551617)
1036
Error 1292 Truncated incorrect DECIMAL value: ''
1037
Error 1292 Truncated incorrect DECIMAL value: ''
1038
select right('hello', 18446744073709551617);
1039
right('hello', 18446744073709551617)
1042
Error 1292 Truncated incorrect DECIMAL value: ''
1043
Error 1292 Truncated incorrect DECIMAL value: ''
1044
select substring('hello', 2, -1);
1045
substring('hello', 2, -1)
1047
select substring('hello', -1, 1);
1048
substring('hello', -1, 1)
1050
select substring('hello', -2, 1);
1051
substring('hello', -2, 1)
1053
select substring('hello', -4294967295, 1);
1054
substring('hello', -4294967295, 1)
1056
select substring('hello', 4294967295, 1);
1057
substring('hello', 4294967295, 1)
1059
select substring('hello', -4294967296, 1);
1060
substring('hello', -4294967296, 1)
1062
select substring('hello', 4294967296, 1);
1063
substring('hello', 4294967296, 1)
1065
select substring('hello', -4294967297, 1);
1066
substring('hello', -4294967297, 1)
1068
select substring('hello', 4294967297, 1);
1069
substring('hello', 4294967297, 1)
1071
select substring('hello', -18446744073709551615, 1);
1072
substring('hello', -18446744073709551615, 1)
1075
Error 1292 Truncated incorrect DECIMAL value: ''
1076
Error 1292 Truncated incorrect DECIMAL value: ''
1077
select substring('hello', 18446744073709551615, 1);
1078
substring('hello', 18446744073709551615, 1)
1080
select substring('hello', -18446744073709551616, 1);
1081
substring('hello', -18446744073709551616, 1)
1084
Error 1292 Truncated incorrect DECIMAL value: ''
1085
Error 1292 Truncated incorrect DECIMAL value: ''
1086
select substring('hello', 18446744073709551616, 1);
1087
substring('hello', 18446744073709551616, 1)
1090
Error 1292 Truncated incorrect DECIMAL value: ''
1091
Error 1292 Truncated incorrect DECIMAL value: ''
1092
select substring('hello', -18446744073709551617, 1);
1093
substring('hello', -18446744073709551617, 1)
1096
Error 1292 Truncated incorrect DECIMAL value: ''
1097
Error 1292 Truncated incorrect DECIMAL value: ''
1098
select substring('hello', 18446744073709551617, 1);
1099
substring('hello', 18446744073709551617, 1)
1102
Error 1292 Truncated incorrect DECIMAL value: ''
1103
Error 1292 Truncated incorrect DECIMAL value: ''
1104
select substring('hello', 1, -1);
1105
substring('hello', 1, -1)
1107
select substring('hello', 1, -4294967295);
1108
substring('hello', 1, -4294967295)
1110
select substring('hello', 1, 4294967295);
1111
substring('hello', 1, 4294967295)
1113
select substring('hello', 1, -4294967296);
1114
substring('hello', 1, -4294967296)
1116
select substring('hello', 1, 4294967296);
1117
substring('hello', 1, 4294967296)
1119
select substring('hello', 1, -4294967297);
1120
substring('hello', 1, -4294967297)
1122
select substring('hello', 1, 4294967297);
1123
substring('hello', 1, 4294967297)
1125
select substring('hello', 1, -18446744073709551615);
1126
substring('hello', 1, -18446744073709551615)
1129
Error 1292 Truncated incorrect DECIMAL value: ''
1130
Error 1292 Truncated incorrect DECIMAL value: ''
1131
select substring('hello', 1, 18446744073709551615);
1132
substring('hello', 1, 18446744073709551615)
1134
select substring('hello', 1, -18446744073709551616);
1135
substring('hello', 1, -18446744073709551616)
1138
Error 1292 Truncated incorrect DECIMAL value: ''
1139
Error 1292 Truncated incorrect DECIMAL value: ''
1140
select substring('hello', 1, 18446744073709551616);
1141
substring('hello', 1, 18446744073709551616)
1144
Error 1292 Truncated incorrect DECIMAL value: ''
1145
Error 1292 Truncated incorrect DECIMAL value: ''
1146
select substring('hello', 1, -18446744073709551617);
1147
substring('hello', 1, -18446744073709551617)
1150
Error 1292 Truncated incorrect DECIMAL value: ''
1151
Error 1292 Truncated incorrect DECIMAL value: ''
1152
select substring('hello', 1, 18446744073709551617);
1153
substring('hello', 1, 18446744073709551617)
1156
Error 1292 Truncated incorrect DECIMAL value: ''
1157
Error 1292 Truncated incorrect DECIMAL value: ''
1158
select substring('hello', -1, -1);
1159
substring('hello', -1, -1)
1161
select substring('hello', -4294967295, -4294967295);
1162
substring('hello', -4294967295, -4294967295)
1164
select substring('hello', 4294967295, 4294967295);
1165
substring('hello', 4294967295, 4294967295)
1167
select substring('hello', -4294967296, -4294967296);
1168
substring('hello', -4294967296, -4294967296)
1170
select substring('hello', 4294967296, 4294967296);
1171
substring('hello', 4294967296, 4294967296)
1173
select substring('hello', -4294967297, -4294967297);
1174
substring('hello', -4294967297, -4294967297)
1176
select substring('hello', 4294967297, 4294967297);
1177
substring('hello', 4294967297, 4294967297)
1179
select substring('hello', -18446744073709551615, -18446744073709551615);
1180
substring('hello', -18446744073709551615, -18446744073709551615)
1183
Error 1292 Truncated incorrect DECIMAL value: ''
1184
Error 1292 Truncated incorrect DECIMAL value: ''
1185
Error 1292 Truncated incorrect DECIMAL value: ''
1186
Error 1292 Truncated incorrect DECIMAL value: ''
1187
select substring('hello', 18446744073709551615, 18446744073709551615);
1188
substring('hello', 18446744073709551615, 18446744073709551615)
1190
select substring('hello', -18446744073709551616, -18446744073709551616);
1191
substring('hello', -18446744073709551616, -18446744073709551616)
1194
Error 1292 Truncated incorrect DECIMAL value: ''
1195
Error 1292 Truncated incorrect DECIMAL value: ''
1196
Error 1292 Truncated incorrect DECIMAL value: ''
1197
Error 1292 Truncated incorrect DECIMAL value: ''
1198
select substring('hello', 18446744073709551616, 18446744073709551616);
1199
substring('hello', 18446744073709551616, 18446744073709551616)
1202
Error 1292 Truncated incorrect DECIMAL value: ''
1203
Error 1292 Truncated incorrect DECIMAL value: ''
1204
Error 1292 Truncated incorrect DECIMAL value: ''
1205
Error 1292 Truncated incorrect DECIMAL value: ''
1206
select substring('hello', -18446744073709551617, -18446744073709551617);
1207
substring('hello', -18446744073709551617, -18446744073709551617)
1210
Error 1292 Truncated incorrect DECIMAL value: ''
1211
Error 1292 Truncated incorrect DECIMAL value: ''
1212
Error 1292 Truncated incorrect DECIMAL value: ''
1213
Error 1292 Truncated incorrect DECIMAL value: ''
1214
select substring('hello', 18446744073709551617, 18446744073709551617);
1215
substring('hello', 18446744073709551617, 18446744073709551617)
1218
Error 1292 Truncated incorrect DECIMAL value: ''
1219
Error 1292 Truncated incorrect DECIMAL value: ''
1220
Error 1292 Truncated incorrect DECIMAL value: ''
1221
Error 1292 Truncated incorrect DECIMAL value: ''
1222
select insert('hello', -1, 1, 'hi');
1223
insert('hello', -1, 1, 'hi')
1225
select insert('hello', -4294967295, 1, 'hi');
1226
insert('hello', -4294967295, 1, 'hi')
1228
select insert('hello', 4294967295, 1, 'hi');
1229
insert('hello', 4294967295, 1, 'hi')
1231
select insert('hello', -4294967296, 1, 'hi');
1232
insert('hello', -4294967296, 1, 'hi')
1234
select insert('hello', 4294967296, 1, 'hi');
1235
insert('hello', 4294967296, 1, 'hi')
1237
select insert('hello', -4294967297, 1, 'hi');
1238
insert('hello', -4294967297, 1, 'hi')
1240
select insert('hello', 4294967297, 1, 'hi');
1241
insert('hello', 4294967297, 1, 'hi')
1243
select insert('hello', -18446744073709551615, 1, 'hi');
1244
insert('hello', -18446744073709551615, 1, 'hi')
1247
Error 1292 Truncated incorrect DECIMAL value: ''
1248
select insert('hello', 18446744073709551615, 1, 'hi');
1249
insert('hello', 18446744073709551615, 1, 'hi')
1251
select insert('hello', -18446744073709551616, 1, 'hi');
1252
insert('hello', -18446744073709551616, 1, 'hi')
1255
Error 1292 Truncated incorrect DECIMAL value: ''
1256
select insert('hello', 18446744073709551616, 1, 'hi');
1257
insert('hello', 18446744073709551616, 1, 'hi')
1260
Error 1292 Truncated incorrect DECIMAL value: ''
1261
select insert('hello', -18446744073709551617, 1, 'hi');
1262
insert('hello', -18446744073709551617, 1, 'hi')
1265
Error 1292 Truncated incorrect DECIMAL value: ''
1266
select insert('hello', 18446744073709551617, 1, 'hi');
1267
insert('hello', 18446744073709551617, 1, 'hi')
1270
Error 1292 Truncated incorrect DECIMAL value: ''
1271
select insert('hello', 1, -1, 'hi');
1272
insert('hello', 1, -1, 'hi')
1274
select insert('hello', 1, -4294967295, 'hi');
1275
insert('hello', 1, -4294967295, 'hi')
1277
select insert('hello', 1, 4294967295, 'hi');
1278
insert('hello', 1, 4294967295, 'hi')
1280
select insert('hello', 1, -4294967296, 'hi');
1281
insert('hello', 1, -4294967296, 'hi')
1283
select insert('hello', 1, 4294967296, 'hi');
1284
insert('hello', 1, 4294967296, 'hi')
1286
select insert('hello', 1, -4294967297, 'hi');
1287
insert('hello', 1, -4294967297, 'hi')
1289
select insert('hello', 1, 4294967297, 'hi');
1290
insert('hello', 1, 4294967297, 'hi')
1292
select insert('hello', 1, -18446744073709551615, 'hi');
1293
insert('hello', 1, -18446744073709551615, 'hi')
1296
Error 1292 Truncated incorrect DECIMAL value: ''
1297
select insert('hello', 1, 18446744073709551615, 'hi');
1298
insert('hello', 1, 18446744073709551615, 'hi')
1300
select insert('hello', 1, -18446744073709551616, 'hi');
1301
insert('hello', 1, -18446744073709551616, 'hi')
1304
Error 1292 Truncated incorrect DECIMAL value: ''
1305
select insert('hello', 1, 18446744073709551616, 'hi');
1306
insert('hello', 1, 18446744073709551616, 'hi')
1309
Error 1292 Truncated incorrect DECIMAL value: ''
1310
select insert('hello', 1, -18446744073709551617, 'hi');
1311
insert('hello', 1, -18446744073709551617, 'hi')
1314
Error 1292 Truncated incorrect DECIMAL value: ''
1315
select insert('hello', 1, 18446744073709551617, 'hi');
1316
insert('hello', 1, 18446744073709551617, 'hi')
1319
Error 1292 Truncated incorrect DECIMAL value: ''
1320
select insert('hello', -1, -1, 'hi');
1321
insert('hello', -1, -1, 'hi')
1323
select insert('hello', -4294967295, -4294967295, 'hi');
1324
insert('hello', -4294967295, -4294967295, 'hi')
1326
select insert('hello', 4294967295, 4294967295, 'hi');
1327
insert('hello', 4294967295, 4294967295, 'hi')
1329
select insert('hello', -4294967296, -4294967296, 'hi');
1330
insert('hello', -4294967296, -4294967296, 'hi')
1332
select insert('hello', 4294967296, 4294967296, 'hi');
1333
insert('hello', 4294967296, 4294967296, 'hi')
1335
select insert('hello', -4294967297, -4294967297, 'hi');
1336
insert('hello', -4294967297, -4294967297, 'hi')
1338
select insert('hello', 4294967297, 4294967297, 'hi');
1339
insert('hello', 4294967297, 4294967297, 'hi')
1341
select insert('hello', -18446744073709551615, -18446744073709551615, 'hi');
1342
insert('hello', -18446744073709551615, -18446744073709551615, 'hi')
1345
Error 1292 Truncated incorrect DECIMAL value: ''
1346
Error 1292 Truncated incorrect DECIMAL value: ''
1347
select insert('hello', 18446744073709551615, 18446744073709551615, 'hi');
1348
insert('hello', 18446744073709551615, 18446744073709551615, 'hi')
1350
select insert('hello', -18446744073709551616, -18446744073709551616, 'hi');
1351
insert('hello', -18446744073709551616, -18446744073709551616, 'hi')
1354
Error 1292 Truncated incorrect DECIMAL value: ''
1355
Error 1292 Truncated incorrect DECIMAL value: ''
1356
select insert('hello', 18446744073709551616, 18446744073709551616, 'hi');
1357
insert('hello', 18446744073709551616, 18446744073709551616, 'hi')
1360
Error 1292 Truncated incorrect DECIMAL value: ''
1361
Error 1292 Truncated incorrect DECIMAL value: ''
1362
select insert('hello', -18446744073709551617, -18446744073709551617, 'hi');
1363
insert('hello', -18446744073709551617, -18446744073709551617, 'hi')
1366
Error 1292 Truncated incorrect DECIMAL value: ''
1367
Error 1292 Truncated incorrect DECIMAL value: ''
1368
select insert('hello', 18446744073709551617, 18446744073709551617, 'hi');
1369
insert('hello', 18446744073709551617, 18446744073709551617, 'hi')
1372
Error 1292 Truncated incorrect DECIMAL value: ''
1373
Error 1292 Truncated incorrect DECIMAL value: ''
1374
select repeat('hello', -1);
1377
select repeat('hello', -4294967295);
1378
repeat('hello', -4294967295)
1380
select repeat('hello', 4294967295);
1381
repeat('hello', 4294967295)
1384
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1385
select repeat('hello', -4294967296);
1386
repeat('hello', -4294967296)
1388
select repeat('hello', 4294967296);
1389
repeat('hello', 4294967296)
1392
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1393
select repeat('hello', -4294967297);
1394
repeat('hello', -4294967297)
1396
select repeat('hello', 4294967297);
1397
repeat('hello', 4294967297)
1400
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1401
select repeat('hello', -18446744073709551615);
1402
repeat('hello', -18446744073709551615)
1405
Error 1292 Truncated incorrect DECIMAL value: ''
1406
Error 1292 Truncated incorrect DECIMAL value: ''
1407
select repeat('hello', 18446744073709551615);
1408
repeat('hello', 18446744073709551615)
1411
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1412
select repeat('hello', -18446744073709551616);
1413
repeat('hello', -18446744073709551616)
1416
Error 1292 Truncated incorrect DECIMAL value: ''
1417
Error 1292 Truncated incorrect DECIMAL value: ''
1418
select repeat('hello', 18446744073709551616);
1419
repeat('hello', 18446744073709551616)
1422
Error 1292 Truncated incorrect DECIMAL value: ''
1423
Error 1292 Truncated incorrect DECIMAL value: ''
1424
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1425
select repeat('hello', -18446744073709551617);
1426
repeat('hello', -18446744073709551617)
1429
Error 1292 Truncated incorrect DECIMAL value: ''
1430
Error 1292 Truncated incorrect DECIMAL value: ''
1431
select repeat('hello', 18446744073709551617);
1432
repeat('hello', 18446744073709551617)
1435
Error 1292 Truncated incorrect DECIMAL value: ''
1436
Error 1292 Truncated incorrect DECIMAL value: ''
1437
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1441
select space(-4294967295);
1444
select space(4294967295);
1448
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1449
select space(-4294967296);
1452
select space(4294967296);
1456
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1457
select space(-4294967297);
1460
select space(4294967297);
1464
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1465
select space(-18446744073709551615);
1466
space(-18446744073709551615)
1469
Error 1292 Truncated incorrect DECIMAL value: ''
1470
Error 1292 Truncated incorrect DECIMAL value: ''
1471
select space(18446744073709551615);
1472
space(18446744073709551615)
1475
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1476
select space(-18446744073709551616);
1477
space(-18446744073709551616)
1480
Error 1292 Truncated incorrect DECIMAL value: ''
1481
Error 1292 Truncated incorrect DECIMAL value: ''
1482
select space(18446744073709551616);
1483
space(18446744073709551616)
1486
Error 1292 Truncated incorrect DECIMAL value: ''
1487
Error 1292 Truncated incorrect DECIMAL value: ''
1488
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1489
select space(-18446744073709551617);
1490
space(-18446744073709551617)
1493
Error 1292 Truncated incorrect DECIMAL value: ''
1494
Error 1292 Truncated incorrect DECIMAL value: ''
1495
select space(18446744073709551617);
1496
space(18446744073709551617)
1499
Error 1292 Truncated incorrect DECIMAL value: ''
1500
Error 1292 Truncated incorrect DECIMAL value: ''
1501
Warning 1301 Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1502
select rpad('hello', -1, '1');
1503
rpad('hello', -1, '1')
1505
select rpad('hello', -4294967295, '1');
1506
rpad('hello', -4294967295, '1')
1508
select rpad('hello', 4294967295, '1');
1509
rpad('hello', 4294967295, '1')
1512
Warning 1301 Result of rpad() was larger than max_allowed_packet (1048576) - truncated
1513
select rpad('hello', -4294967296, '1');
1514
rpad('hello', -4294967296, '1')
1516
select rpad('hello', 4294967296, '1');
1517
rpad('hello', 4294967296, '1')
1520
Warning 1301 Result of rpad() was larger than max_allowed_packet (1048576) - truncated
1521
select rpad('hello', -4294967297, '1');
1522
rpad('hello', -4294967297, '1')
1524
select rpad('hello', 4294967297, '1');
1525
rpad('hello', 4294967297, '1')
1528
Warning 1301 Result of rpad() was larger than max_allowed_packet (1048576) - truncated
1529
select rpad('hello', -18446744073709551615, '1');
1530
rpad('hello', -18446744073709551615, '1')
1533
Error 1292 Truncated incorrect DECIMAL value: ''
1534
Error 1292 Truncated incorrect DECIMAL value: ''
1535
select rpad('hello', 18446744073709551615, '1');
1536
rpad('hello', 18446744073709551615, '1')
1539
Warning 1301 Result of rpad() was larger than max_allowed_packet (1048576) - truncated
1540
select rpad('hello', -18446744073709551616, '1');
1541
rpad('hello', -18446744073709551616, '1')
1544
Error 1292 Truncated incorrect DECIMAL value: ''
1545
Error 1292 Truncated incorrect DECIMAL value: ''
1546
select rpad('hello', 18446744073709551616, '1');
1547
rpad('hello', 18446744073709551616, '1')
1550
Error 1292 Truncated incorrect DECIMAL value: ''
1551
Error 1292 Truncated incorrect DECIMAL value: ''
1552
Warning 1301 Result of rpad() was larger than max_allowed_packet (1048576) - truncated
1553
select rpad('hello', -18446744073709551617, '1');
1554
rpad('hello', -18446744073709551617, '1')
1557
Error 1292 Truncated incorrect DECIMAL value: ''
1558
Error 1292 Truncated incorrect DECIMAL value: ''
1559
select rpad('hello', 18446744073709551617, '1');
1560
rpad('hello', 18446744073709551617, '1')
1563
Error 1292 Truncated incorrect DECIMAL value: ''
1564
Error 1292 Truncated incorrect DECIMAL value: ''
1565
Warning 1301 Result of rpad() was larger than max_allowed_packet (1048576) - truncated
1566
select lpad('hello', -1, '1');
1567
lpad('hello', -1, '1')
1569
select lpad('hello', -4294967295, '1');
1570
lpad('hello', -4294967295, '1')
1572
select lpad('hello', 4294967295, '1');
1573
lpad('hello', 4294967295, '1')
1576
Warning 1301 Result of lpad() was larger than max_allowed_packet (1048576) - truncated
1577
select lpad('hello', -4294967296, '1');
1578
lpad('hello', -4294967296, '1')
1580
select lpad('hello', 4294967296, '1');
1581
lpad('hello', 4294967296, '1')
1584
Warning 1301 Result of lpad() was larger than max_allowed_packet (1048576) - truncated
1585
select lpad('hello', -4294967297, '1');
1586
lpad('hello', -4294967297, '1')
1588
select lpad('hello', 4294967297, '1');
1589
lpad('hello', 4294967297, '1')
1592
Warning 1301 Result of lpad() was larger than max_allowed_packet (1048576) - truncated
1593
select lpad('hello', -18446744073709551615, '1');
1594
lpad('hello', -18446744073709551615, '1')
1597
Error 1292 Truncated incorrect DECIMAL value: ''
1598
Error 1292 Truncated incorrect DECIMAL value: ''
1599
select lpad('hello', 18446744073709551615, '1');
1600
lpad('hello', 18446744073709551615, '1')
1603
Warning 1301 Result of lpad() was larger than max_allowed_packet (1048576) - truncated
1604
select lpad('hello', -18446744073709551616, '1');
1605
lpad('hello', -18446744073709551616, '1')
1608
Error 1292 Truncated incorrect DECIMAL value: ''
1609
Error 1292 Truncated incorrect DECIMAL value: ''
1610
select lpad('hello', 18446744073709551616, '1');
1611
lpad('hello', 18446744073709551616, '1')
1614
Error 1292 Truncated incorrect DECIMAL value: ''
1615
Error 1292 Truncated incorrect DECIMAL value: ''
1616
Warning 1301 Result of lpad() was larger than max_allowed_packet (1048576) - truncated
1617
select lpad('hello', -18446744073709551617, '1');
1618
lpad('hello', -18446744073709551617, '1')
1621
Error 1292 Truncated incorrect DECIMAL value: ''
1622
Error 1292 Truncated incorrect DECIMAL value: ''
1623
select lpad('hello', 18446744073709551617, '1');
1624
lpad('hello', 18446744073709551617, '1')
1627
Error 1292 Truncated incorrect DECIMAL value: ''
1628
Error 1292 Truncated incorrect DECIMAL value: ''
1629
Warning 1301 Result of lpad() was larger than max_allowed_packet (1048576) - truncated
1630
SELECT CHAR(0xff,0x8f);
1633
SELECT CHAR(0xff,0x8f) IS NULL;
1634
CHAR(0xff,0x8f) IS NULL
1636
create table t1(f1 longtext);
1637
insert into t1 values ("123"),("456");
1638
select substring(f1,1,1) from t1 group by 1;
1642
create table t2(f1 varchar(3));
1643
insert into t1 values ("123"),("456");
1644
select substring(f1,4,1), substring(f1,-4,1) from t2;
1645
substring(f1,4,1) substring(f1,-4,1)
1647
DROP TABLE IF EXISTS t1;
1649
`id` varchar(20) NOT NULL,
1650
`tire` int NOT NULL,
1653
INSERT INTO `t1` (`id`, `tire`) VALUES ('A', 0), ('B', 1),('C', 2);
1654
SELECT REPEAT( '#', tire ) AS A,
1655
REPEAT( '#', tire % 999 ) AS B, tire FROM `t1`;
1660
SELECT REPEAT('0', 0);
1663
SELECT REPEAT('0', -2);
1666
SELECT REPEAT('0', 2);
1673
SELECT UNHEX('G') IS NULL;
1676
SELECT INSERT('abc', 3, 3, '1234');
1677
INSERT('abc', 3, 3, '1234')
1679
SELECT INSERT('abc', 4, 3, '1234');
1680
INSERT('abc', 4, 3, '1234')
1682
SELECT INSERT('abc', 5, 3, '1234');
1683
INSERT('abc', 5, 3, '1234')
1685
SELECT INSERT('abc', 6, 3, '1234');
1686
INSERT('abc', 6, 3, '1234')
1688
SELECT LOCATE('foo', NULL);
1691
SELECT LOCATE(NULL, 'o');
1694
SELECT LOCATE(NULL, NULL);
1697
SELECT LOCATE('foo', NULL) IS NULL;
1698
LOCATE('foo', NULL) IS NULL
1700
SELECT LOCATE(NULL, 'o') IS NULL;
1701
LOCATE(NULL, 'o') IS NULL
1703
SELECT LOCATE(NULL, NULL) IS NULL;
1704
LOCATE(NULL, NULL) IS NULL
1706
SELECT ISNULL(LOCATE('foo', NULL));
1707
ISNULL(LOCATE('foo', NULL))
1709
SELECT ISNULL(LOCATE(NULL, 'o'));
1710
ISNULL(LOCATE(NULL, 'o'))
1712
SELECT ISNULL(LOCATE(NULL, NULL));
1713
ISNULL(LOCATE(NULL, NULL))
1715
SELECT LOCATE('foo', NULL) <=> NULL;
1716
LOCATE('foo', NULL) <=> NULL
1718
SELECT LOCATE(NULL, 'o') <=> NULL;
1719
LOCATE(NULL, 'o') <=> NULL
1721
SELECT LOCATE(NULL, NULL) <=> NULL;
1722
LOCATE(NULL, NULL) <=> NULL
1724
CREATE TABLE t1 (id int NOT NULL PRIMARY KEY, a varchar(10), p varchar(10));
1725
INSERT INTO t1 VALUES (1, 'foo', 'o');
1726
INSERT INTO t1 VALUES (2, 'foo', NULL);
1727
INSERT INTO t1 VALUES (3, NULL, 'o');
1728
INSERT INTO t1 VALUES (4, NULL, NULL);
1729
SELECT id, LOCATE(a,p) FROM t1;
1735
SELECT id, LOCATE(a,p) IS NULL FROM t1;
1736
id LOCATE(a,p) IS NULL
1741
SELECT id, ISNULL(LOCATE(a,p)) FROM t1;
1742
id ISNULL(LOCATE(a,p))
1747
SELECT id, LOCATE(a,p) <=> NULL FROM t1;
1748
id LOCATE(a,p) <=> NULL
1753
SELECT id FROM t1 WHERE LOCATE(a,p) IS NULL;
1758
SELECT id FROM t1 WHERE LOCATE(a,p) <=> NULL;
1764
SELECT SUBSTR('foo',1,0);
1767
SELECT SUBSTR('foo',1,0);
1770
SELECT SUBSTR('foo',1,0);
1773
CREATE TABLE t1 (a varchar(10), len int);
1774
INSERT INTO t1 VALUES ('bar', 2), ('foo', 0);
1775
SELECT SUBSTR(a,1,len) FROM t1;
1780
CREATE TABLE t1 AS SELECT CHAR(0x414243) as c1;
1781
SELECT HEX(c1) from t1;