~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/pbxt/func_str.result

Removed/replaced DBUG symbols and TRUE/FALSE

Show diffs side-by-side

added added

removed removed

Lines of Context:
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';
6
 
hello
7
 
hellomonty
8
 
select length('\n\t\r\b\0\_\%\\');
9
 
length('\n\t\r\b\0\_\%\\')
10
 
10
11
 
select char_length('\n\t\r\b\0\_\%\\');
12
 
char_length('\n\t\r\b\0\_\%\\')
13
 
10
14
 
select character_length('\n\t\r\b\0\_\%\\');
15
 
character_length('\n\t\r\b\0\_\%\\')
16
 
10
17
 
select length('\n\t\n\b\0\\_\\%\\');
18
 
length('\n\t\n\b\0\\_\\%\\')
19
 
10
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));
24
 
hex(char(256))
25
 
0100
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)
28
 
1       0       4
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')
31
 
1       0       0
32
 
select position(binary 'll' in 'hello'),position('a' in binary 'hello');
33
 
position(binary 'll' in 'hello')        position('a' in binary 'hello')
34
 
3       0
35
 
select left('hello',null), right('hello',null);
36
 
left('hello',null)      right('hello',null)
37
 
NULL    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)
40
 
he      lo      el      hello
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))
43
 
happy
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)
46
 
tcx.se  www
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)
49
 
www.    .se
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)
52
 
tcx.se  .se
53
 
select substring_index('aaaaaaaaa1','a',1);
54
 
substring_index('aaaaaaaaa1','a',1)
55
 
 
56
 
select substring_index('aaaaaaaaa1','aa',1);
57
 
substring_index('aaaaaaaaa1','aa',1)
58
 
 
59
 
select substring_index('aaaaaaaaa1','aa',2);
60
 
substring_index('aaaaaaaaa1','aa',2)
61
 
aa
62
 
select substring_index('aaaaaaaaa1','aa',3);
63
 
substring_index('aaaaaaaaa1','aa',3)
64
 
aaaa
65
 
select substring_index('aaaaaaaaa1','aa',4);
66
 
substring_index('aaaaaaaaa1','aa',4)
67
 
aaaaaa
68
 
select substring_index('aaaaaaaaa1','aa',5);
69
 
substring_index('aaaaaaaaa1','aa',5)
70
 
aaaaaaaaa1
71
 
select substring_index('aaaaaaaaa1','aaa',1);
72
 
substring_index('aaaaaaaaa1','aaa',1)
73
 
 
74
 
select substring_index('aaaaaaaaa1','aaa',2);
75
 
substring_index('aaaaaaaaa1','aaa',2)
76
 
aaa
77
 
select substring_index('aaaaaaaaa1','aaa',3);
78
 
substring_index('aaaaaaaaa1','aaa',3)
79
 
aaaaaa
80
 
select substring_index('aaaaaaaaa1','aaa',4);
81
 
substring_index('aaaaaaaaa1','aaa',4)
82
 
aaaaaaaaa1
83
 
select substring_index('aaaaaaaaa1','aaaa',1);
84
 
substring_index('aaaaaaaaa1','aaaa',1)
85
 
 
86
 
select substring_index('aaaaaaaaa1','aaaa',2);
87
 
substring_index('aaaaaaaaa1','aaaa',2)
88
 
aaaa
89
 
select substring_index('aaaaaaaaa1','1',1);
90
 
substring_index('aaaaaaaaa1','1',1)
91
 
aaaaaaaaa
92
 
select substring_index('aaaaaaaaa1','a',-1);
93
 
substring_index('aaaaaaaaa1','a',-1)
94
 
1
95
 
select substring_index('aaaaaaaaa1','aa',-1);
96
 
substring_index('aaaaaaaaa1','aa',-1)
97
 
a1
98
 
select substring_index('aaaaaaaaa1','aa',-2);
99
 
substring_index('aaaaaaaaa1','aa',-2)
100
 
aaa1
101
 
select substring_index('aaaaaaaaa1','aa',-3);
102
 
substring_index('aaaaaaaaa1','aa',-3)
103
 
aaaaa1
104
 
select substring_index('aaaaaaaaa1','aa',-4);
105
 
substring_index('aaaaaaaaa1','aa',-4)
106
 
aaaaaaa1
107
 
select substring_index('aaaaaaaaa1','aa',-5);
108
 
substring_index('aaaaaaaaa1','aa',-5)
109
 
aaaaaaaaa1
110
 
select substring_index('aaaaaaaaa1','aaa',-1);
111
 
substring_index('aaaaaaaaa1','aaa',-1)
112
 
1
113
 
select substring_index('aaaaaaaaa1','aaa',-2);
114
 
substring_index('aaaaaaaaa1','aaa',-2)
115
 
aaa1
116
 
select substring_index('aaaaaaaaa1','aaa',-3);
117
 
substring_index('aaaaaaaaa1','aaa',-3)
118
 
aaaaaa1
119
 
select substring_index('aaaaaaaaa1','aaa',-4);
120
 
substring_index('aaaaaaaaa1','aaa',-4)
121
 
aaaaaaaaa1
122
 
select substring_index('the king of thethe hill','the',-2);
123
 
substring_index('the king of thethe hill','the',-2)
124
 
the hill
125
 
select substring_index('the king of the the hill','the',-2);
126
 
substring_index('the king of the the hill','the',-2)
127
 
 the hill
128
 
select substring_index('the king of the  the hill','the',-2);
129
 
substring_index('the king of the  the hill','the',-2)
130
 
  the hill
131
 
select substring_index('the king of the  the hill',' the ',-1);
132
 
substring_index('the king of the  the hill',' the ',-1)
133
 
hill
134
 
select substring_index('the king of the  the hill',' the ',-2);
135
 
substring_index('the king of the  the hill',' the ',-2)
136
 
 the hill
137
 
select substring_index('the king of the  the hill',' ',-1);
138
 
substring_index('the king of the  the hill',' ',-1)
139
 
hill
140
 
select substring_index('the king of the  the hill',' ',-2);
141
 
substring_index('the king of the  the hill',' ',-2)
142
 
the hill
143
 
select substring_index('the king of the  the hill',' ',-3);
144
 
substring_index('the king of the  the hill',' ',-3)
145
 
 the hill
146
 
select substring_index('the king of the  the hill',' ',-4);
147
 
substring_index('the king of the  the hill',' ',-4)
148
 
the  the hill
149
 
select substring_index('the king of the  the hill',' ',-5);
150
 
substring_index('the king of the  the hill',' ',-5)
151
 
of the  the hill
152
 
select substring_index('the king of the.the hill','the',-2);
153
 
substring_index('the king of the.the hill','the',-2)
154
 
.the hill
155
 
select substring_index('the king of thethethe.the hill','the',-3);
156
 
substring_index('the king of thethethe.the hill','the',-3)
157
 
the.the hill
158
 
select substring_index('the king of thethethe.the hill','the',-1);
159
 
substring_index('the king of thethethe.the hill','the',-1)
160
 
 hill
161
 
select substring_index('the king of the the hill','the',1);
162
 
substring_index('the king of the the hill','the',1)
163
 
 
164
 
select substring_index('the king of the the hill','the',2);
165
 
substring_index('the king of the the hill','the',2)
166
 
the king of 
167
 
select substring_index('the king of the the hill','the',3);
168
 
substring_index('the king of the the hill','the',3)
169
 
the king of the 
170
 
select concat(':',ltrim('  left  '),':',rtrim('  right  '),':');
171
 
concat(':',ltrim('  left  '),':',rtrim('  right  '),':')
172
 
:left  :  right:
173
 
select concat(':',trim(leading from '  left  '),':',trim(trailing from '  right  '),':');
174
 
concat(':',trim(leading from '  left  '),':',trim(trailing from '  right  '),':')
175
 
:left  :  right:
176
 
select concat(':',trim(LEADING FROM ' left'),':',trim(TRAILING FROM ' right '),':');
177
 
concat(':',trim(LEADING FROM ' left'),':',trim(TRAILING FROM ' right '),':')
178
 
:left: right:
179
 
select concat(':',trim(' m '),':',trim(BOTH FROM ' y '),':',trim('*' FROM '*s*'),':');
180
 
concat(':',trim(' m '),':',trim(BOTH FROM ' y '),':',trim('*' FROM '*s*'),':')
181
 
:m:y:s:
182
 
select concat(':',trim(BOTH 'ab' FROM 'ababmyabab'),':',trim(BOTH '*' FROM '***sql'),':');
183
 
concat(':',trim(BOTH 'ab' FROM 'ababmyabab'),':',trim(BOTH '*' FROM '***sql'),':')
184
 
:my:sql:
185
 
select concat(':',trim(LEADING '.*' FROM '.*my'),':',trim(TRAILING '.*' FROM 'sql.*.*'),':');
186
 
concat(':',trim(LEADING '.*' FROM '.*my'),':',trim(TRAILING '.*' FROM 'sql.*.*'),':')
187
 
:my: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")
190
 
        ok      ok
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,'')
196
 
NULL    
197
 
select concat_ws(',','',NULL,'a');
198
 
concat_ws(',','',NULL,'a')
199
 
,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')
205
 
this    is a    test
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')
211
 
this is a REAL test
212
 
select crc32("123");
213
 
crc32("123")
214
 
2286445522
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')
220
 
cba     dcba
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')
232
 
abcdaba abaabcd
233
 
select rpad('abcd',1,'ab'),lpad('abcd',1,'ab');
234
 
rpad('abcd',1,'ab')     lpad('abcd',1,'ab')
235
 
a       a
236
 
select rpad('STRING', 20, CONCAT('p','a','d') );
237
 
rpad('STRING', 20, CONCAT('p','a','d') )
238
 
STRINGpadpadpadpadpa
239
 
select lpad('STRING', 20, CONCAT('p','a','d') );
240
 
lpad('STRING', 20, CONCAT('p','a','d') )
241
 
padpadpadpadpaSTRING
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')
244
 
NULL    NULL
245
 
select quote('\'\"\\test');
246
 
quote('\'\"\\test')
247
 
'\'"\\test'
248
 
select quote(concat('abc\'', '\\cba'));
249
 
quote(concat('abc\'', '\\cba'))
250
 
'abc\'\\cba'
251
 
select quote(1/0), quote('\0\Z');
252
 
quote(1/0)      quote('\0\Z')
253
 
NULL    '\0\Z'
254
 
Warnings:
255
 
Error   1365    Division by 0
256
 
select length(quote(concat(char(0),"test")));
257
 
length(quote(concat(char(0),"test")))
258
 
8
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))))
261
 
27E0E3E6E7E8EAEB27
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))
270
 
aNULL
271
 
select reverse("");
272
 
reverse("")
273
 
 
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)
276
 
aa      b               a
277
 
select elt(2,1),field(NULL,"a","b","c"),reverse("");
278
 
elt(2,1)        field(NULL,"a","b","c") reverse("")
279
 
NULL    0       
280
 
select locate("a","b",2),locate("","a",1);
281
 
locate("a","b",2)       locate("","a",1)
282
 
0       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")
285
 
a       a       a       a
286
 
select substring_index("www.tcx.se","",3);
287
 
substring_index("www.tcx.se","",3)
288
 
 
289
 
select length(repeat("a",100000000)),length(repeat("a",1000*64));
290
 
length(repeat("a",100000000))   length(repeat("a",1000*64))
291
 
NULL    64000
292
 
Warnings:
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"))
296
 
1       0       3
297
 
Warnings:
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")
301
 
2
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';
311
 
domain
312
 
hello.de
313
 
select domain from t1 where concat('@', trim(leading '.' from concat('.', domain))) = '@test.de';
314
 
domain
315
 
test.de
316
 
drop table t1;
317
 
CREATE TEMPORARY TABLE t1 (
318
 
id int NOT NULL,
319
 
title varchar(255) default NULL,
320
 
prio int default NULL,
321
 
category int default NULL,
322
 
program int default NULL,
323
 
bugdesc text,
324
 
created datetime default NULL,
325
 
modified timestamp NOT NULL,
326
 
bugstatus int default NULL,
327
 
submitter int default NULL
328
 
) ENGINE=MyISAM;
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
342
 
drop table t1;
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');
345
 
DROP TABLE t1;
346
 
CREATE TABLE t1 (
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',
350
 
PRIMARY KEY(wid)
351
 
);
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)
356
 
NULL
357
 
NULL
358
 
DROP TABLE t1;
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)),"."))
364
 
NULL
365
 
</a>..........................
366
 
DROP TABLE t1;
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')
371
 
1       345
372
 
2       34
373
 
DROP TABLE t1;
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')
378
 
one     'one'   0       0       'one'
379
 
NULL    NULL    0       0       NULL
380
 
two     'two'   0       0       'two'
381
 
four    'four'  0       0       'four'
382
 
drop table t1;
383
 
select trim(trailing 'foo' from 'foo');
384
 
trim(trailing 'foo' from 'foo')
385
 
 
386
 
select trim(leading 'foo' from 'foo');
387
 
trim(leading 'foo' from 'foo')
388
 
 
389
 
select quote(ltrim(concat('    ', 'a')));
390
 
quote(ltrim(concat('    ', 'a')))
391
 
'a'
392
 
select quote(trim(concat('    ', 'a')));
393
 
quote(trim(concat('    ', 'a')))
394
 
'a'
395
 
CREATE TABLE t1 SELECT 1 UNION SELECT 2 UNION SELECT 3;
396
 
SELECT QUOTE('A') FROM t1;
397
 
QUOTE('A')
398
 
'A'
399
 
'A'
400
 
'A'
401
 
DROP TABLE t1;
402
 
select SUBSTR('abcdefg',3,2);
403
 
SUBSTR('abcdefg',3,2)
404
 
cd
405
 
select SUBSTRING('abcdefg',3,2);
406
 
SUBSTRING('abcdefg',3,2)
407
 
cd
408
 
select SUBSTR('abcdefg',-3,2);
409
 
SUBSTR('abcdefg',-3,2)
410
 
ef
411
 
select SUBSTR('abcdefg',-1,5);
412
 
SUBSTR('abcdefg',-1,5)
413
 
g
414
 
select SUBSTR('abcdefg',0,0);
415
 
SUBSTR('abcdefg',0,0)
416
 
 
417
 
select SUBSTR('abcdefg',-1,-1);
418
 
SUBSTR('abcdefg',-1,-1)
419
 
 
420
 
select SUBSTR('abcdefg',1,-1);
421
 
SUBSTR('abcdefg',1,-1)
422
 
 
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
429
 
Warnings:
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
434
 
Warnings:
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
439
 
Warnings:
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
444
 
Warnings:
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
449
 
Warnings:
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
454
 
Warnings:
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
459
 
Warnings:
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
464
 
Warnings:
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
469
 
Warnings:
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
474
 
Warnings:
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
479
 
Warnings:
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
484
 
Warnings:
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
489
 
Warnings:
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
494
 
Warnings:
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
499
 
Warnings:
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
504
 
Warnings:
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
509
 
Warnings:
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
514
 
Warnings:
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
519
 
Warnings:
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
524
 
Warnings:
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
529
 
Warnings:
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
534
 
Warnings:
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
539
 
Warnings:
540
 
Note    1003    select substring_index('1abcd;2abcd;3abcd;4abcd',';',2) AS `substring_index("1abcd;2abcd;3abcd;4abcd", ';', 2)`
541
 
SELECT lpad(12345, 5, "#");
542
 
lpad(12345, 5, "#")
543
 
12345
544
 
SELECT conv(71, 10, 36), conv('1Z', 36, 10);
545
 
conv(71, 10, 36)        conv('1Z', 36, 10)
546
 
1Z      71
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;
556
 
name
557
 
aaaaaaaaaaccccc
558
 
bbbbbbbbbbddddd
559
 
drop table t1, t2;
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
565
 
select * from t1;
566
 
c1      c2
567
 
drop table t1;
568
 
select left(1234, 3) + 0;
569
 
left(1234, 3) + 0
570
 
123
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;
574
 
total   reg
575
 
10      2004-12-10
576
 
drop table t1;
577
 
select trim(null from 'kate') as "must_be_null";
578
 
must_be_null
579
 
NULL
580
 
select trim('xyz' from null) as "must_be_null";
581
 
must_be_null
582
 
NULL
583
 
select trim(leading NULL from 'kate') as "must_be_null";
584
 
must_be_null
585
 
NULL
586
 
select trim(trailing NULL from 'xyz') as "must_be_null";
587
 
must_be_null
588
 
NULL
589
 
CREATE TEMPORARY TABLE t1 (
590
 
id int NOT NULL auto_increment,
591
 
a bigint default NULL,
592
 
PRIMARY KEY  (id)
593
 
) ENGINE=MyISAM;
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)
598
 
16307858876001849059
599
 
EXPLAIN 
600
 
SELECT id
601
 
FROM t1
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
605
 
EXPLAIN 
606
 
SELECT id
607
 
FROM t1
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
611
 
DROP TABLE t1;
612
 
SELECT CHAR(NULL,121,83,81,'76') as my_column;
613
 
my_column
614
 
ySQL
615
 
SELECT CHAR_LENGTH(CHAR(NULL,121,83,81,'76')) as my_column;
616
 
my_column
617
 
4
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');
622
 
DROP TABLE t1, t2;
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)
625
 
3       3       3
626
 
select field(NULL,1,2,NULL), field(NULL,1,2,0);
627
 
field(NULL,1,2,NULL)    field(NULL,1,2,0)
628
 
0       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;
634
 
str     num
635
 
notnumber       0
636
 
SELECT * FROM t1, t2 WHERE num=substring(str from 1 for 6);
637
 
str     num
638
 
notnumber       0
639
 
DROP TABLE t1,t2;
640
 
CREATE TABLE t1(
641
 
id int NOT NULL auto_increment,
642
 
pc int NOT NULL default '0',
643
 
title varchar(20) default NULL,
644
 
PRIMARY KEY (id)
645
 
);
646
 
INSERT INTO t1 VALUES
647
 
(1, 0, 'Main'),
648
 
(2, 1, 'Toys'),
649
 
(3, 1, 'Games');
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;
653
 
id      col1
654
 
1       Main
655
 
2       Main->Toys
656
 
3       Main->Games
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%';
661
 
id      col1
662
 
2       Main->Toys
663
 
DROP TABLE t1;
664
 
CREATE TABLE t1(
665
 
trackid     int NOT NULL auto_increment,
666
 
trackname   varchar(100) NOT NULL default '',
667
 
PRIMARY KEY (trackid)
668
 
);
669
 
CREATE TABLE t2(
670
 
artistid    int NOT NULL auto_increment,
671
 
artistname  varchar(100) NOT NULL default '',
672
 
PRIMARY KEY (artistid)
673
 
);
674
 
CREATE TABLE t3(
675
 
trackid     int NOT NULL,
676
 
artistid    int NOT NULL,
677
 
PRIMARY KEY (trackid,artistid)
678
 
);
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%';
686
 
trackname       artistname
687
 
April In Paris Vernon Duke      Vernon Duke
688
 
Autumn In New York      NULL
689
 
DROP TABLE t1,t2,t3;
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)
694
 
ab      ab      b       ab                      
695
 
abc     abc     c       bc      abc             
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)
700
 
ab      ab      b       ab                      
701
 
abc     abc     c       bc      abc             
702
 
abcd    abcd    d       cd      bcd     abcd    
703
 
abcde   abcde   e       de      cde     bcde    abcde
704
 
drop table t1;
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
713
 
t
714
 
1000000
715
 
      1
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
719
 
t
720
 
1000000
721
 
1      
722
 
drop table t1;
723
 
select load_file("lkjlkj");
724
 
load_file("lkjlkj")
725
 
NULL
726
 
select ifnull(load_file("lkjlkj"),"it's null");
727
 
ifnull(load_file("lkjlkj"),"it's null")
728
 
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;
733
 
a       c
734
 
abc     abc abc
735
 
xyz     xyz xyz
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;
740
 
a       c
741
 
abc     abc abc
742
 
xyz     xyz xyz
743
 
DROP TABLE t1;
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
749
 
Warnings:
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
754
 
Warnings:
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
759
 
Warnings:
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
764
 
Warnings:
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
769
 
Warnings:
770
 
Note    1003    select `test`.`t1`.`s` AS `s` from `test`.`t1` where (trim(both 'y' from `test`.`t1`.`s`) > 'ab')
771
 
DROP TABLE t1;
772
 
create TEMPORARY table t1 (a bigint not null)engine=myisam;
773
 
insert into t1 set a = 1024*1024*1024*4;
774
 
drop table t1;
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));
779
 
a
780
 
 
781
 
 
782
 
drop table t1;
783
 
End of 4.1 tests
784
 
create table t1 (d decimal default null);
785
 
insert into t1 values (null);
786
 
select format(d, 2) from t1;
787
 
format(d, 2)
788
 
NULL
789
 
drop table 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;
793
 
c       res
794
 
y,abc   abc
795
 
y,abc   abc
796
 
drop table t1;
797
 
select cast(rtrim('  20.06 ') as decimal(19,2));
798
 
cast(rtrim('  20.06 ') as decimal(19,2))
799
 
20.06
800
 
select cast(ltrim('  20.06 ') as decimal(19,2));
801
 
cast(ltrim('  20.06 ') as decimal(19,2))
802
 
20.06
803
 
select cast(rtrim(ltrim('  20.06 ')) as decimal(19,2));
804
 
cast(rtrim(ltrim('  20.06 ')) as decimal(19,2))
805
 
20.06
806
 
select conv("18383815659218730760",10,10) + 0;
807
 
conv("18383815659218730760",10,10) + 0
808
 
1.83838156592187e19
809
 
select "18383815659218730760" + 0;
810
 
"18383815659218730760" + 0
811
 
1.83838156592187e19
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';
815
 
ASCII(code)     code
816
 
97      a12
817
 
65      A12
818
 
SELECT ASCII(code), code FROM t1 WHERE code='A12' AND ASCII(code)=65;
819
 
ASCII(code)     code
820
 
65      A12
821
 
INSERT INTO t1 VALUES ('a12 '), ('A12  ');
822
 
SELECT LENGTH(code), code FROM t1 WHERE code='A12';
823
 
LENGTH(code)    code
824
 
3       a12
825
 
3       A12
826
 
4       a12 
827
 
5       A12  
828
 
SELECT LENGTH(code), code FROM t1 WHERE code='A12' AND LENGTH(code)=5;
829
 
LENGTH(code)    code
830
 
5       A12  
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');
836
 
code    id
837
 
A12     a12
838
 
EXPLAIN EXTENDED 
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
844
 
Warnings:
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'))))
846
 
DROP TABLE t1,t2;
847
 
select benchmark(-1, 1);
848
 
benchmark(-1, 1)
849
 
NULL
850
 
Warnings:
851
 
Error   1411    Incorrect count value: '-1' for function benchmark
852
 
set @dec=5;
853
 
select format(pi(), (1+1));
854
 
format(pi(), (1+1))
855
 
3.14
856
 
select format(pi(), (select 3));
857
 
format(pi(), (select 3))
858
 
3.142
859
 
select format(pi(), @dec);
860
 
format(pi(), @dec)
861
 
3.14159
862
 
set @bench_count=10;
863
 
select benchmark(10, pi());
864
 
benchmark(10, pi())
865
 
0
866
 
select benchmark(5+5, pi());
867
 
benchmark(5+5, pi())
868
 
0
869
 
select benchmark((select 10), pi());
870
 
benchmark((select 10), pi())
871
 
0
872
 
select benchmark(@bench_count, pi());
873
 
benchmark(@bench_count, pi())
874
 
0
875
 
select locate('he','hello',-2);
876
 
locate('he','hello',-2)
877
 
0
878
 
select locate('lo','hello',-4294967295);
879
 
locate('lo','hello',-4294967295)
880
 
0
881
 
select locate('lo','hello',4294967295);
882
 
locate('lo','hello',4294967295)
883
 
0
884
 
select locate('lo','hello',-4294967296);
885
 
locate('lo','hello',-4294967296)
886
 
0
887
 
select locate('lo','hello',4294967296);
888
 
locate('lo','hello',4294967296)
889
 
0
890
 
select locate('lo','hello',-4294967297);
891
 
locate('lo','hello',-4294967297)
892
 
0
893
 
select locate('lo','hello',4294967297);
894
 
locate('lo','hello',4294967297)
895
 
0
896
 
select locate('lo','hello',-18446744073709551615);
897
 
locate('lo','hello',-18446744073709551615)
898
 
0
899
 
Warnings:
900
 
Error   1292    Truncated incorrect DECIMAL value: ''
901
 
select locate('lo','hello',18446744073709551615);
902
 
locate('lo','hello',18446744073709551615)
903
 
0
904
 
select locate('lo','hello',-18446744073709551616);
905
 
locate('lo','hello',-18446744073709551616)
906
 
0
907
 
Warnings:
908
 
Error   1292    Truncated incorrect DECIMAL value: ''
909
 
select locate('lo','hello',18446744073709551616);
910
 
locate('lo','hello',18446744073709551616)
911
 
0
912
 
Warnings:
913
 
Error   1292    Truncated incorrect DECIMAL value: ''
914
 
select locate('lo','hello',-18446744073709551617);
915
 
locate('lo','hello',-18446744073709551617)
916
 
0
917
 
Warnings:
918
 
Error   1292    Truncated incorrect DECIMAL value: ''
919
 
select locate('lo','hello',18446744073709551617);
920
 
locate('lo','hello',18446744073709551617)
921
 
0
922
 
Warnings:
923
 
Error   1292    Truncated incorrect DECIMAL value: ''
924
 
select left('hello', 10);
925
 
left('hello', 10)
926
 
hello
927
 
select left('hello', 0);
928
 
left('hello', 0)
929
 
 
930
 
select left('hello', -1);
931
 
left('hello', -1)
932
 
 
933
 
select left('hello', -4294967295);
934
 
left('hello', -4294967295)
935
 
 
936
 
select left('hello', 4294967295);
937
 
left('hello', 4294967295)
938
 
hello
939
 
select left('hello', -4294967296);
940
 
left('hello', -4294967296)
941
 
 
942
 
select left('hello', 4294967296);
943
 
left('hello', 4294967296)
944
 
hello
945
 
select left('hello', -4294967297);
946
 
left('hello', -4294967297)
947
 
 
948
 
select left('hello', 4294967297);
949
 
left('hello', 4294967297)
950
 
hello
951
 
select left('hello', -18446744073709551615);
952
 
left('hello', -18446744073709551615)
953
 
 
954
 
Warnings:
955
 
Error   1292    Truncated incorrect DECIMAL value: ''
956
 
Error   1292    Truncated incorrect DECIMAL value: ''
957
 
select left('hello', 18446744073709551615);
958
 
left('hello', 18446744073709551615)
959
 
hello
960
 
select left('hello', -18446744073709551616);
961
 
left('hello', -18446744073709551616)
962
 
 
963
 
Warnings:
964
 
Error   1292    Truncated incorrect DECIMAL value: ''
965
 
Error   1292    Truncated incorrect DECIMAL value: ''
966
 
select left('hello', 18446744073709551616);
967
 
left('hello', 18446744073709551616)
968
 
hello
969
 
Warnings:
970
 
Error   1292    Truncated incorrect DECIMAL value: ''
971
 
Error   1292    Truncated incorrect DECIMAL value: ''
972
 
select left('hello', -18446744073709551617);
973
 
left('hello', -18446744073709551617)
974
 
 
975
 
Warnings:
976
 
Error   1292    Truncated incorrect DECIMAL value: ''
977
 
Error   1292    Truncated incorrect DECIMAL value: ''
978
 
select left('hello', 18446744073709551617);
979
 
left('hello', 18446744073709551617)
980
 
hello
981
 
Warnings:
982
 
Error   1292    Truncated incorrect DECIMAL value: ''
983
 
Error   1292    Truncated incorrect DECIMAL value: ''
984
 
select right('hello', 10);
985
 
right('hello', 10)
986
 
hello
987
 
select right('hello', 0);
988
 
right('hello', 0)
989
 
 
990
 
select right('hello', -1);
991
 
right('hello', -1)
992
 
 
993
 
select right('hello', -4294967295);
994
 
right('hello', -4294967295)
995
 
 
996
 
select right('hello', 4294967295);
997
 
right('hello', 4294967295)
998
 
hello
999
 
select right('hello', -4294967296);
1000
 
right('hello', -4294967296)
1001
 
 
1002
 
select right('hello', 4294967296);
1003
 
right('hello', 4294967296)
1004
 
hello
1005
 
select right('hello', -4294967297);
1006
 
right('hello', -4294967297)
1007
 
 
1008
 
select right('hello', 4294967297);
1009
 
right('hello', 4294967297)
1010
 
hello
1011
 
select right('hello', -18446744073709551615);
1012
 
right('hello', -18446744073709551615)
1013
 
 
1014
 
Warnings:
1015
 
Error   1292    Truncated incorrect DECIMAL value: ''
1016
 
Error   1292    Truncated incorrect DECIMAL value: ''
1017
 
select right('hello', 18446744073709551615);
1018
 
right('hello', 18446744073709551615)
1019
 
hello
1020
 
select right('hello', -18446744073709551616);
1021
 
right('hello', -18446744073709551616)
1022
 
 
1023
 
Warnings:
1024
 
Error   1292    Truncated incorrect DECIMAL value: ''
1025
 
Error   1292    Truncated incorrect DECIMAL value: ''
1026
 
select right('hello', 18446744073709551616);
1027
 
right('hello', 18446744073709551616)
1028
 
hello
1029
 
Warnings:
1030
 
Error   1292    Truncated incorrect DECIMAL value: ''
1031
 
Error   1292    Truncated incorrect DECIMAL value: ''
1032
 
select right('hello', -18446744073709551617);
1033
 
right('hello', -18446744073709551617)
1034
 
 
1035
 
Warnings:
1036
 
Error   1292    Truncated incorrect DECIMAL value: ''
1037
 
Error   1292    Truncated incorrect DECIMAL value: ''
1038
 
select right('hello', 18446744073709551617);
1039
 
right('hello', 18446744073709551617)
1040
 
hello
1041
 
Warnings:
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)
1046
 
 
1047
 
select substring('hello', -1, 1);
1048
 
substring('hello', -1, 1)
1049
 
o
1050
 
select substring('hello', -2, 1);
1051
 
substring('hello', -2, 1)
1052
 
l
1053
 
select substring('hello', -4294967295, 1);
1054
 
substring('hello', -4294967295, 1)
1055
 
 
1056
 
select substring('hello', 4294967295, 1);
1057
 
substring('hello', 4294967295, 1)
1058
 
 
1059
 
select substring('hello', -4294967296, 1);
1060
 
substring('hello', -4294967296, 1)
1061
 
 
1062
 
select substring('hello', 4294967296, 1);
1063
 
substring('hello', 4294967296, 1)
1064
 
 
1065
 
select substring('hello', -4294967297, 1);
1066
 
substring('hello', -4294967297, 1)
1067
 
 
1068
 
select substring('hello', 4294967297, 1);
1069
 
substring('hello', 4294967297, 1)
1070
 
 
1071
 
select substring('hello', -18446744073709551615, 1);
1072
 
substring('hello', -18446744073709551615, 1)
1073
 
 
1074
 
Warnings:
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)
1079
 
 
1080
 
select substring('hello', -18446744073709551616, 1);
1081
 
substring('hello', -18446744073709551616, 1)
1082
 
 
1083
 
Warnings:
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)
1088
 
 
1089
 
Warnings:
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)
1094
 
 
1095
 
Warnings:
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)
1100
 
 
1101
 
Warnings:
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)
1106
 
 
1107
 
select substring('hello', 1, -4294967295);
1108
 
substring('hello', 1, -4294967295)
1109
 
 
1110
 
select substring('hello', 1, 4294967295);
1111
 
substring('hello', 1, 4294967295)
1112
 
hello
1113
 
select substring('hello', 1, -4294967296);
1114
 
substring('hello', 1, -4294967296)
1115
 
 
1116
 
select substring('hello', 1, 4294967296);
1117
 
substring('hello', 1, 4294967296)
1118
 
hello
1119
 
select substring('hello', 1, -4294967297);
1120
 
substring('hello', 1, -4294967297)
1121
 
 
1122
 
select substring('hello', 1, 4294967297);
1123
 
substring('hello', 1, 4294967297)
1124
 
hello
1125
 
select substring('hello', 1, -18446744073709551615);
1126
 
substring('hello', 1, -18446744073709551615)
1127
 
 
1128
 
Warnings:
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)
1133
 
hello
1134
 
select substring('hello', 1, -18446744073709551616);
1135
 
substring('hello', 1, -18446744073709551616)
1136
 
 
1137
 
Warnings:
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)
1142
 
hello
1143
 
Warnings:
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)
1148
 
 
1149
 
Warnings:
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)
1154
 
hello
1155
 
Warnings:
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)
1160
 
 
1161
 
select substring('hello', -4294967295, -4294967295);
1162
 
substring('hello', -4294967295, -4294967295)
1163
 
 
1164
 
select substring('hello', 4294967295, 4294967295);
1165
 
substring('hello', 4294967295, 4294967295)
1166
 
 
1167
 
select substring('hello', -4294967296, -4294967296);
1168
 
substring('hello', -4294967296, -4294967296)
1169
 
 
1170
 
select substring('hello', 4294967296, 4294967296);
1171
 
substring('hello', 4294967296, 4294967296)
1172
 
 
1173
 
select substring('hello', -4294967297, -4294967297);
1174
 
substring('hello', -4294967297, -4294967297)
1175
 
 
1176
 
select substring('hello', 4294967297, 4294967297);
1177
 
substring('hello', 4294967297, 4294967297)
1178
 
 
1179
 
select substring('hello', -18446744073709551615, -18446744073709551615);
1180
 
substring('hello', -18446744073709551615, -18446744073709551615)
1181
 
 
1182
 
Warnings:
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)
1189
 
 
1190
 
select substring('hello', -18446744073709551616, -18446744073709551616);
1191
 
substring('hello', -18446744073709551616, -18446744073709551616)
1192
 
 
1193
 
Warnings:
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)
1200
 
 
1201
 
Warnings:
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)
1208
 
 
1209
 
Warnings:
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)
1216
 
 
1217
 
Warnings:
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')
1224
 
hello
1225
 
select insert('hello', -4294967295, 1, 'hi');
1226
 
insert('hello', -4294967295, 1, 'hi')
1227
 
hello
1228
 
select insert('hello', 4294967295, 1, 'hi');
1229
 
insert('hello', 4294967295, 1, 'hi')
1230
 
hello
1231
 
select insert('hello', -4294967296, 1, 'hi');
1232
 
insert('hello', -4294967296, 1, 'hi')
1233
 
hello
1234
 
select insert('hello', 4294967296, 1, 'hi');
1235
 
insert('hello', 4294967296, 1, 'hi')
1236
 
hello
1237
 
select insert('hello', -4294967297, 1, 'hi');
1238
 
insert('hello', -4294967297, 1, 'hi')
1239
 
hello
1240
 
select insert('hello', 4294967297, 1, 'hi');
1241
 
insert('hello', 4294967297, 1, 'hi')
1242
 
hello
1243
 
select insert('hello', -18446744073709551615, 1, 'hi');
1244
 
insert('hello', -18446744073709551615, 1, 'hi')
1245
 
hello
1246
 
Warnings:
1247
 
Error   1292    Truncated incorrect DECIMAL value: ''
1248
 
select insert('hello', 18446744073709551615, 1, 'hi');
1249
 
insert('hello', 18446744073709551615, 1, 'hi')
1250
 
hello
1251
 
select insert('hello', -18446744073709551616, 1, 'hi');
1252
 
insert('hello', -18446744073709551616, 1, 'hi')
1253
 
hello
1254
 
Warnings:
1255
 
Error   1292    Truncated incorrect DECIMAL value: ''
1256
 
select insert('hello', 18446744073709551616, 1, 'hi');
1257
 
insert('hello', 18446744073709551616, 1, 'hi')
1258
 
hello
1259
 
Warnings:
1260
 
Error   1292    Truncated incorrect DECIMAL value: ''
1261
 
select insert('hello', -18446744073709551617, 1, 'hi');
1262
 
insert('hello', -18446744073709551617, 1, 'hi')
1263
 
hello
1264
 
Warnings:
1265
 
Error   1292    Truncated incorrect DECIMAL value: ''
1266
 
select insert('hello', 18446744073709551617, 1, 'hi');
1267
 
insert('hello', 18446744073709551617, 1, 'hi')
1268
 
hello
1269
 
Warnings:
1270
 
Error   1292    Truncated incorrect DECIMAL value: ''
1271
 
select insert('hello', 1, -1, 'hi');
1272
 
insert('hello', 1, -1, 'hi')
1273
 
hi
1274
 
select insert('hello', 1, -4294967295, 'hi');
1275
 
insert('hello', 1, -4294967295, 'hi')
1276
 
hi
1277
 
select insert('hello', 1, 4294967295, 'hi');
1278
 
insert('hello', 1, 4294967295, 'hi')
1279
 
hi
1280
 
select insert('hello', 1, -4294967296, 'hi');
1281
 
insert('hello', 1, -4294967296, 'hi')
1282
 
hi
1283
 
select insert('hello', 1, 4294967296, 'hi');
1284
 
insert('hello', 1, 4294967296, 'hi')
1285
 
hi
1286
 
select insert('hello', 1, -4294967297, 'hi');
1287
 
insert('hello', 1, -4294967297, 'hi')
1288
 
hi
1289
 
select insert('hello', 1, 4294967297, 'hi');
1290
 
insert('hello', 1, 4294967297, 'hi')
1291
 
hi
1292
 
select insert('hello', 1, -18446744073709551615, 'hi');
1293
 
insert('hello', 1, -18446744073709551615, 'hi')
1294
 
hi
1295
 
Warnings:
1296
 
Error   1292    Truncated incorrect DECIMAL value: ''
1297
 
select insert('hello', 1, 18446744073709551615, 'hi');
1298
 
insert('hello', 1, 18446744073709551615, 'hi')
1299
 
hi
1300
 
select insert('hello', 1, -18446744073709551616, 'hi');
1301
 
insert('hello', 1, -18446744073709551616, 'hi')
1302
 
hi
1303
 
Warnings:
1304
 
Error   1292    Truncated incorrect DECIMAL value: ''
1305
 
select insert('hello', 1, 18446744073709551616, 'hi');
1306
 
insert('hello', 1, 18446744073709551616, 'hi')
1307
 
hi
1308
 
Warnings:
1309
 
Error   1292    Truncated incorrect DECIMAL value: ''
1310
 
select insert('hello', 1, -18446744073709551617, 'hi');
1311
 
insert('hello', 1, -18446744073709551617, 'hi')
1312
 
hi
1313
 
Warnings:
1314
 
Error   1292    Truncated incorrect DECIMAL value: ''
1315
 
select insert('hello', 1, 18446744073709551617, 'hi');
1316
 
insert('hello', 1, 18446744073709551617, 'hi')
1317
 
hi
1318
 
Warnings:
1319
 
Error   1292    Truncated incorrect DECIMAL value: ''
1320
 
select insert('hello', -1, -1, 'hi');
1321
 
insert('hello', -1, -1, 'hi')
1322
 
hello
1323
 
select insert('hello', -4294967295, -4294967295, 'hi');
1324
 
insert('hello', -4294967295, -4294967295, 'hi')
1325
 
hello
1326
 
select insert('hello', 4294967295, 4294967295, 'hi');
1327
 
insert('hello', 4294967295, 4294967295, 'hi')
1328
 
hello
1329
 
select insert('hello', -4294967296, -4294967296, 'hi');
1330
 
insert('hello', -4294967296, -4294967296, 'hi')
1331
 
hello
1332
 
select insert('hello', 4294967296, 4294967296, 'hi');
1333
 
insert('hello', 4294967296, 4294967296, 'hi')
1334
 
hello
1335
 
select insert('hello', -4294967297, -4294967297, 'hi');
1336
 
insert('hello', -4294967297, -4294967297, 'hi')
1337
 
hello
1338
 
select insert('hello', 4294967297, 4294967297, 'hi');
1339
 
insert('hello', 4294967297, 4294967297, 'hi')
1340
 
hello
1341
 
select insert('hello', -18446744073709551615, -18446744073709551615, 'hi');
1342
 
insert('hello', -18446744073709551615, -18446744073709551615, 'hi')
1343
 
hello
1344
 
Warnings:
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')
1349
 
hello
1350
 
select insert('hello', -18446744073709551616, -18446744073709551616, 'hi');
1351
 
insert('hello', -18446744073709551616, -18446744073709551616, 'hi')
1352
 
hello
1353
 
Warnings:
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')
1358
 
hello
1359
 
Warnings:
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')
1364
 
hello
1365
 
Warnings:
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')
1370
 
hello
1371
 
Warnings:
1372
 
Error   1292    Truncated incorrect DECIMAL value: ''
1373
 
Error   1292    Truncated incorrect DECIMAL value: ''
1374
 
select repeat('hello', -1);
1375
 
repeat('hello', -1)
1376
 
 
1377
 
select repeat('hello', -4294967295);
1378
 
repeat('hello', -4294967295)
1379
 
 
1380
 
select repeat('hello', 4294967295);
1381
 
repeat('hello', 4294967295)
1382
 
NULL
1383
 
Warnings:
1384
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1385
 
select repeat('hello', -4294967296);
1386
 
repeat('hello', -4294967296)
1387
 
 
1388
 
select repeat('hello', 4294967296);
1389
 
repeat('hello', 4294967296)
1390
 
NULL
1391
 
Warnings:
1392
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1393
 
select repeat('hello', -4294967297);
1394
 
repeat('hello', -4294967297)
1395
 
 
1396
 
select repeat('hello', 4294967297);
1397
 
repeat('hello', 4294967297)
1398
 
NULL
1399
 
Warnings:
1400
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1401
 
select repeat('hello', -18446744073709551615);
1402
 
repeat('hello', -18446744073709551615)
1403
 
 
1404
 
Warnings:
1405
 
Error   1292    Truncated incorrect DECIMAL value: ''
1406
 
Error   1292    Truncated incorrect DECIMAL value: ''
1407
 
select repeat('hello', 18446744073709551615);
1408
 
repeat('hello', 18446744073709551615)
1409
 
NULL
1410
 
Warnings:
1411
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1412
 
select repeat('hello', -18446744073709551616);
1413
 
repeat('hello', -18446744073709551616)
1414
 
 
1415
 
Warnings:
1416
 
Error   1292    Truncated incorrect DECIMAL value: ''
1417
 
Error   1292    Truncated incorrect DECIMAL value: ''
1418
 
select repeat('hello', 18446744073709551616);
1419
 
repeat('hello', 18446744073709551616)
1420
 
NULL
1421
 
Warnings:
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)
1427
 
 
1428
 
Warnings:
1429
 
Error   1292    Truncated incorrect DECIMAL value: ''
1430
 
Error   1292    Truncated incorrect DECIMAL value: ''
1431
 
select repeat('hello', 18446744073709551617);
1432
 
repeat('hello', 18446744073709551617)
1433
 
NULL
1434
 
Warnings:
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
1438
 
select space(-1);
1439
 
space(-1)
1440
 
 
1441
 
select space(-4294967295);
1442
 
space(-4294967295)
1443
 
 
1444
 
select space(4294967295);
1445
 
space(4294967295)
1446
 
NULL
1447
 
Warnings:
1448
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1449
 
select space(-4294967296);
1450
 
space(-4294967296)
1451
 
 
1452
 
select space(4294967296);
1453
 
space(4294967296)
1454
 
NULL
1455
 
Warnings:
1456
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1457
 
select space(-4294967297);
1458
 
space(-4294967297)
1459
 
 
1460
 
select space(4294967297);
1461
 
space(4294967297)
1462
 
NULL
1463
 
Warnings:
1464
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1465
 
select space(-18446744073709551615);
1466
 
space(-18446744073709551615)
1467
 
 
1468
 
Warnings:
1469
 
Error   1292    Truncated incorrect DECIMAL value: ''
1470
 
Error   1292    Truncated incorrect DECIMAL value: ''
1471
 
select space(18446744073709551615);
1472
 
space(18446744073709551615)
1473
 
NULL
1474
 
Warnings:
1475
 
Warning 1301    Result of repeat() was larger than max_allowed_packet (1048576) - truncated
1476
 
select space(-18446744073709551616);
1477
 
space(-18446744073709551616)
1478
 
 
1479
 
Warnings:
1480
 
Error   1292    Truncated incorrect DECIMAL value: ''
1481
 
Error   1292    Truncated incorrect DECIMAL value: ''
1482
 
select space(18446744073709551616);
1483
 
space(18446744073709551616)
1484
 
NULL
1485
 
Warnings:
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)
1491
 
 
1492
 
Warnings:
1493
 
Error   1292    Truncated incorrect DECIMAL value: ''
1494
 
Error   1292    Truncated incorrect DECIMAL value: ''
1495
 
select space(18446744073709551617);
1496
 
space(18446744073709551617)
1497
 
NULL
1498
 
Warnings:
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')
1504
 
NULL
1505
 
select rpad('hello', -4294967295, '1');
1506
 
rpad('hello', -4294967295, '1')
1507
 
NULL
1508
 
select rpad('hello', 4294967295, '1');
1509
 
rpad('hello', 4294967295, '1')
1510
 
NULL
1511
 
Warnings:
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')
1515
 
NULL
1516
 
select rpad('hello', 4294967296, '1');
1517
 
rpad('hello', 4294967296, '1')
1518
 
NULL
1519
 
Warnings:
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')
1523
 
NULL
1524
 
select rpad('hello', 4294967297, '1');
1525
 
rpad('hello', 4294967297, '1')
1526
 
NULL
1527
 
Warnings:
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')
1531
 
NULL
1532
 
Warnings:
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')
1537
 
NULL
1538
 
Warnings:
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')
1542
 
NULL
1543
 
Warnings:
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')
1548
 
NULL
1549
 
Warnings:
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')
1555
 
NULL
1556
 
Warnings:
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')
1561
 
NULL
1562
 
Warnings:
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')
1568
 
NULL
1569
 
select lpad('hello', -4294967295, '1');
1570
 
lpad('hello', -4294967295, '1')
1571
 
NULL
1572
 
select lpad('hello', 4294967295, '1');
1573
 
lpad('hello', 4294967295, '1')
1574
 
NULL
1575
 
Warnings:
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')
1579
 
NULL
1580
 
select lpad('hello', 4294967296, '1');
1581
 
lpad('hello', 4294967296, '1')
1582
 
NULL
1583
 
Warnings:
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')
1587
 
NULL
1588
 
select lpad('hello', 4294967297, '1');
1589
 
lpad('hello', 4294967297, '1')
1590
 
NULL
1591
 
Warnings:
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')
1595
 
NULL
1596
 
Warnings:
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')
1601
 
NULL
1602
 
Warnings:
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')
1606
 
NULL
1607
 
Warnings:
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')
1612
 
NULL
1613
 
Warnings:
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')
1619
 
NULL
1620
 
Warnings:
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')
1625
 
NULL
1626
 
Warnings:
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);
1631
 
CHAR(0xff,0x8f)
1632
 
��
1633
 
SELECT CHAR(0xff,0x8f) IS NULL;
1634
 
CHAR(0xff,0x8f) IS NULL
1635
 
0
1636
 
create table t1(f1 longtext);
1637
 
insert into t1 values ("123"),("456");
1638
 
select substring(f1,1,1) from t1 group by 1;
1639
 
substring(f1,1,1)
1640
 
1
1641
 
4
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)
1646
 
drop table t1,t2;
1647
 
DROP TABLE IF EXISTS t1;
1648
 
CREATE TABLE `t1` (
1649
 
`id` varchar(20) NOT NULL,
1650
 
`tire` int NOT NULL,
1651
 
PRIMARY KEY (`id`)
1652
 
);
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`;
1656
 
A       B       tire
1657
 
                0
1658
 
#       #       1
1659
 
##      ##      2
1660
 
SELECT REPEAT('0', 0);
1661
 
REPEAT('0', 0)
1662
 
 
1663
 
SELECT REPEAT('0', -2);
1664
 
REPEAT('0', -2)
1665
 
 
1666
 
SELECT REPEAT('0', 2);
1667
 
REPEAT('0', 2)
1668
 
00
1669
 
DROP TABLE t1;
1670
 
SELECT UNHEX('G');
1671
 
UNHEX('G')
1672
 
NULL
1673
 
SELECT UNHEX('G') IS NULL;
1674
 
UNHEX('G') IS NULL
1675
 
1
1676
 
SELECT INSERT('abc', 3, 3, '1234');
1677
 
INSERT('abc', 3, 3, '1234')
1678
 
ab1234
1679
 
SELECT INSERT('abc', 4, 3, '1234');
1680
 
INSERT('abc', 4, 3, '1234')
1681
 
abc1234
1682
 
SELECT INSERT('abc', 5, 3, '1234');
1683
 
INSERT('abc', 5, 3, '1234')
1684
 
abc
1685
 
SELECT INSERT('abc', 6, 3, '1234');
1686
 
INSERT('abc', 6, 3, '1234')
1687
 
abc
1688
 
SELECT LOCATE('foo', NULL);
1689
 
LOCATE('foo', NULL)
1690
 
NULL
1691
 
SELECT LOCATE(NULL, 'o');
1692
 
LOCATE(NULL, 'o')
1693
 
NULL
1694
 
SELECT LOCATE(NULL, NULL);
1695
 
LOCATE(NULL, NULL)
1696
 
NULL
1697
 
SELECT LOCATE('foo', NULL) IS NULL;
1698
 
LOCATE('foo', NULL) IS NULL
1699
 
1
1700
 
SELECT LOCATE(NULL, 'o') IS NULL;
1701
 
LOCATE(NULL, 'o') IS NULL
1702
 
1
1703
 
SELECT LOCATE(NULL, NULL) IS NULL;
1704
 
LOCATE(NULL, NULL) IS NULL
1705
 
1
1706
 
SELECT ISNULL(LOCATE('foo', NULL));
1707
 
ISNULL(LOCATE('foo', NULL))
1708
 
1
1709
 
SELECT ISNULL(LOCATE(NULL, 'o'));
1710
 
ISNULL(LOCATE(NULL, 'o'))
1711
 
1
1712
 
SELECT ISNULL(LOCATE(NULL, NULL));
1713
 
ISNULL(LOCATE(NULL, NULL))
1714
 
1
1715
 
SELECT LOCATE('foo', NULL) <=> NULL;
1716
 
LOCATE('foo', NULL) <=> NULL
1717
 
1
1718
 
SELECT LOCATE(NULL, 'o') <=> NULL;
1719
 
LOCATE(NULL, 'o') <=> NULL
1720
 
1
1721
 
SELECT LOCATE(NULL, NULL) <=> NULL;
1722
 
LOCATE(NULL, NULL) <=> NULL
1723
 
1
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;
1730
 
id      LOCATE(a,p)
1731
 
1       0
1732
 
2       NULL
1733
 
3       NULL
1734
 
4       NULL
1735
 
SELECT id, LOCATE(a,p) IS NULL FROM t1;
1736
 
id      LOCATE(a,p) IS NULL 
1737
 
1       0
1738
 
2       1
1739
 
3       1
1740
 
4       1
1741
 
SELECT id, ISNULL(LOCATE(a,p)) FROM t1;
1742
 
id      ISNULL(LOCATE(a,p))
1743
 
1       0
1744
 
2       1
1745
 
3       1
1746
 
4       1
1747
 
SELECT id, LOCATE(a,p) <=> NULL FROM t1;
1748
 
id      LOCATE(a,p) <=> NULL 
1749
 
1       0
1750
 
2       1
1751
 
3       1
1752
 
4       1
1753
 
SELECT id FROM t1 WHERE LOCATE(a,p) IS NULL;
1754
 
id
1755
 
2
1756
 
3
1757
 
4
1758
 
SELECT id FROM t1 WHERE LOCATE(a,p) <=> NULL;
1759
 
id
1760
 
2
1761
 
3
1762
 
4
1763
 
DROP TABLE t1;
1764
 
SELECT SUBSTR('foo',1,0);
1765
 
SUBSTR('foo',1,0)
1766
 
 
1767
 
SELECT SUBSTR('foo',1,0);
1768
 
SUBSTR('foo',1,0)
1769
 
 
1770
 
SELECT SUBSTR('foo',1,0);
1771
 
SUBSTR('foo',1,0)
1772
 
 
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;
1776
 
SUBSTR(a,1,len)
1777
 
ba
1778
 
 
1779
 
DROP TABLE t1;
1780
 
CREATE TABLE t1 AS SELECT CHAR(0x414243) as c1;
1781
 
SELECT HEX(c1) from t1;
1782
 
HEX(c1)
1783
 
414243
1784
 
DROP TABLE t1;
1785
 
End of 5.0 tests