241
241
CREATE TABLE table_25930_a ( blah INT );
242
242
CREATE TABLE table_25930_b SELECT "blah" - 1 FROM table_25930_a;
243
243
desc table_25930_b;
244
Field Type Null Key Default Extra
245
"blah" - 1 double NO NULL
244
Field Type Null Default Default_is_NULL On_Update
245
"blah" - 1 DOUBLE NO NO
246
246
DROP TABLE table_25930_a;
247
247
DROP TABLE table_25930_b;
259
259
ERROR 42000: Incorrect parameter count in the call to native function 'atan'
260
260
select atan2(1, 2, 3);
261
ERROR 42000: Incorrect parameter count in the call to native function 'atan2'
261
ERROR 42000: Incorrect parameter count in the call to native function 'atan'
263
263
ERROR 42000: Incorrect parameter count in the call to native function 'concat'
264
264
select concat("foo");
324
324
select abs(3 AS three);
325
ERROR 42000: Incorrect parameters in the call to native function 'abs'
326
327
select abs(3 three);
327
ERROR 42000: Incorrect parameters in the call to native function 'abs'
328
330
select abs(3 AS "three");
329
ERROR 42000: Incorrect parameters in the call to native function 'abs'
330
333
select abs(3 "three");
331
ERROR 42000: Incorrect parameters in the call to native function 'abs'
333
337
set @foobar="foobar";
334
338
select instr("foobar", "bar");
393
397
select atan(10 AS p1);
394
ERROR 42000: Incorrect parameters in the call to native function 'atan'
395
400
select atan(10 p1);
396
ERROR 42000: Incorrect parameters in the call to native function 'atan'
397
403
select atan(10 AS "p1");
398
ERROR 42000: Incorrect parameters in the call to native function 'atan'
399
406
select atan(10 "p1");
400
ERROR 42000: Incorrect parameters in the call to native function 'atan'
401
409
select atan(10, 20);
403
411
0.463647609000806
404
412
select atan(10 AS p1, 20);
405
ERROR 42000: Incorrect parameters in the call to native function 'atan'
406
415
select atan(10 p1, 20);
407
ERROR 42000: Incorrect parameters in the call to native function 'atan'
408
418
select atan(10 AS "p1", 20);
409
ERROR 42000: Incorrect parameters in the call to native function 'atan'
410
421
select atan(10 "p1", 20);
411
ERROR 42000: Incorrect parameters in the call to native function 'atan'
412
424
select atan(10, 20 AS p2);
413
ERROR 42000: Incorrect parameters in the call to native function 'atan'
414
427
select atan(10, 20 p2);
415
ERROR 42000: Incorrect parameters in the call to native function 'atan'
416
430
select atan(10, 20 AS "p2");
417
ERROR 42000: Incorrect parameters in the call to native function 'atan'
418
433
select atan(10, 20 "p2");
419
ERROR 42000: Incorrect parameters in the call to native function 'atan'
420
436
select atan(10 AS p1, 20 AS p2);
421
ERROR 42000: Incorrect parameters in the call to native function 'atan'
437
atan(10 AS p1, 20 AS p2)
422
439
DROP TABLE IF EXISTS t1;
423
440
SELECT "1997-12-31 23:59:59" + INTERVAL 1 SECOND;
424
441
"1997-12-31 23:59:59" + INTERVAL 1 SECOND
461
478
SELECT t1.*,t2.* FROM { OJ ((t1 LEFT OUTER JOIN t2 ON t1.a3=t2.a2) INNER JOIN t3 ON (t3.a1=t2.a2))};
462
479
a1 a2 a3 a4 a1 a2 a3 a4
463
480
SELECT t1.*,t2.* FROM { OJ (t1 LEFT OUTER JOIN t2 ON t1.a1=t2.a2) CROSS JOIN t3 ON (t3.a2=t2.a3)};
481
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'ON (t3.a2=t2.a3)}' at line 1
482
SELECT t1.*,t2.* FROM { OJ (t1 LEFT OUTER JOIN t2 ON t1.a1=t2.a2) INNER JOIN t3 ON (t3.a2=t2.a3)};
464
483
a1 a2 a3 a4 a1 a2 a3 a4
465
484
SELECT * FROM {oj t1 LEFT OUTER JOIN t2 ON t1.a1=t2.a3} WHERE t1.a2 > 10;
466
485
a1 a2 a3 a4 a1 a2 a3 a4