~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
drop table if exists t1,t2,t3;
2
drop database if exists mysqltest;
3
drop view if exists v1;
4
revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
5
revoke all privileges on mysqltest.* from mysqltest_1@localhost;
6
delete from mysql.user where user=_binary'mysqltest_1';
7
create table t1(id1 int not null auto_increment primary key, t char(12));
8
create table t2(id2 int not null, t char(12));
9
create table t3(id3 int not null, t char(12), index(id3));
10
select count(*) from t1 where id1 > 95;
11
count(*)
12
5
13
select count(*) from t2 where id2 > 95;
14
count(*)
15
25
16
select count(*) from t3 where id3 > 95;
17
count(*)
18
250
19
update t1,t2,t3 set t1.t="aaa", t2.t="bbb", t3.t="cc" where  t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 90;
20
select count(*) from t1 where t = "aaa";
21
count(*)
22
10
23
select count(*) from t1 where id1 > 90;
24
count(*)
25
10
26
select count(*) from t2 where t = "bbb";
27
count(*)
28
50
29
select count(*) from t2 where id2 > 90;
30
count(*)
31
50
32
select count(*) from t3 where t = "cc";
33
count(*)
34
500
35
select count(*) from t3 where id3 > 90;
36
count(*)
37
500
38
delete t1.*, t2.*, t3.*  from t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 95;
39
check table t1, t2, t3;
40
Table	Op	Msg_type	Msg_text
41
test.t1	check	status	OK
42
test.t2	check	status	OK
43
test.t3	check	status	OK
44
select count(*) from t1 where id1 > 95;
45
count(*)
46
0
47
select count(*) from t2 where id2 > 95;
48
count(*)
49
0
50
select count(*) from t3 where id3 > 95;
51
count(*)
52
0
53
delete t1, t2, t3  from t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 5;
54
select count(*) from t1 where id1 > 5;
55
count(*)
56
0
57
select count(*) from t2 where id2 > 5;
58
count(*)
59
0
60
select count(*) from t3 where id3 > 5;
61
count(*)
62
0
63
delete from t1, t2, t3  using t1,t2,t3 where t1.id1 = t2.id2 and t2.id2 = t3.id3  and t1.id1 > 0;
64
select count(*) from t1 where id1;
65
count(*)
66
0
67
select count(*) from t2 where id2;
68
count(*)
69
0
70
select count(*) from t3 where id3;
71
count(*)
72
0
73
drop table t1,t2,t3;
74
create table t1(id1 int not null  primary key, t varchar(100)) pack_keys = 1;
75
create table t2(id2 int not null, t varchar(100), index(id2)) pack_keys = 1;
76
delete t1  from t1,t2 where t1.id1 = t2.id2 and t1.id1 > 500;
77
drop table t1,t2;
78
CREATE TABLE t1 (
79
id int(11) NOT NULL default '0',
80
name varchar(10) default NULL,
81
PRIMARY KEY  (id)
82
) ENGINE=MyISAM;
83
INSERT INTO t1 VALUES (1,'aaa'),(2,'aaa'),(3,'aaa');
84
CREATE TABLE t2 (
85
id int(11) NOT NULL default '0',
86
name varchar(10) default NULL,
87
PRIMARY KEY  (id)
88
) ENGINE=MyISAM;
89
INSERT INTO t2 VALUES (2,'bbb'),(3,'bbb'),(4,'bbb');
90
CREATE TABLE t3 (
91
id int(11) NOT NULL default '0',
92
mydate datetime default NULL,
93
PRIMARY KEY  (id)
94
) ENGINE=MyISAM;
95
INSERT INTO t3 VALUES (1,'2002-02-04 00:00:00'),(3,'2002-05-12 00:00:00'),(5,'2002-05-12 00:00:00'),(6,'2002-06-22
96
00:00:00'),(7,'2002-07-22 00:00:00');
97
delete t1,t2,t3 from t1,t2,t3 where to_days(now())-to_days(t3.mydate)>=30 and t3.id=t1.id and t3.id=t2.id;
98
select * from t3;
99
id	mydate
100
1	2002-02-04 00:00:00
101
5	2002-05-12 00:00:00
102
6	2002-06-22 00:00:00
103
7	2002-07-22 00:00:00
104
DROP TABLE t1,t2,t3;
105
CREATE TABLE IF NOT EXISTS `t1` (
106
`id` int(11) NOT NULL auto_increment,
107
`tst` text,
108
`tst1` text,
109
PRIMARY KEY  (`id`)
110
) ENGINE=MyISAM;
111
CREATE TABLE IF NOT EXISTS `t2` (
112
`ID` int(11) NOT NULL auto_increment,
113
`ParId` int(11) default NULL,
114
`tst` text,
115
`tst1` text,
116
PRIMARY KEY  (`ID`),
117
KEY `IX_ParId_t2` (`ParId`),
118
FOREIGN KEY (`ParId`) REFERENCES `t1` (`id`)
119
) ENGINE=MyISAM;
120
INSERT INTO t1(tst,tst1) VALUES("MySQL","MySQL AB"), ("MSSQL","Microsoft"), ("ORACLE","ORACLE");
121
INSERT INTO t2(ParId) VALUES(1), (2), (3);
122
select * from t2;
123
ID	ParId	tst	tst1
124
1	1	NULL	NULL
125
2	2	NULL	NULL
126
3	3	NULL	NULL
127
UPDATE t2, t1 SET t2.tst = t1.tst, t2.tst1 = t1.tst1 WHERE t2.ParId = t1.Id;
128
select * from t2;
129
ID	ParId	tst	tst1
130
1	1	MySQL	MySQL AB
131
2	2	MSSQL	Microsoft
132
3	3	ORACLE	ORACLE
133
drop table t1, t2 ;
134
create table t1 (n numeric(10));
135
create table t2 (n numeric(10));
136
insert into t2 values (1),(2),(4),(8),(16),(32);
137
select * from t2 left outer join t1  using (n);
138
n
139
1
140
2
141
4
142
8
143
16
144
32
145
delete  t1,t2 from t2 left outer join t1  using (n);
146
select * from t2 left outer join t1  using (n);
147
n
148
drop table t1,t2 ;
149
create table t1 (n int(10) not null primary key, d int(10));
150
create table t2 (n int(10) not null primary key, d int(10));
151
insert into t1 values(1,1);
152
insert into t2 values(1,10),(2,20);
153
LOCK TABLES t1 write, t2 read;
154
DELETE t1.*, t2.* FROM t1,t2 where t1.n=t2.n;
155
ERROR HY000: Table 't2' was locked with a READ lock and can't be updated
156
UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
157
ERROR HY000: Table 't2' was locked with a READ lock and can't be updated
158
UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
159
unlock tables;
160
LOCK TABLES t1 write, t2 write;
161
UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
162
select * from t1;
163
n	d
164
1	10
165
DELETE t1.*, t2.* FROM t1,t2 where t1.n=t2.n;
166
select * from t1;
167
n	d
168
select * from t2;
169
n	d
170
2	20
171
unlock tables;
172
drop table t1,t2;
173
set sql_safe_updates=1;
174
create table t1 (n int(10), d int(10));
175
create table t2 (n int(10), d int(10));
176
insert into t1 values(1,1);
177
insert into t2 values(1,10),(2,20);
178
UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
179
ERROR HY000: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column
180
set sql_safe_updates=0;
181
drop table t1,t2;
182
set timestamp=1038401397;
183
create table t1 (n int(10) not null primary key, d int(10), t timestamp);
184
create table t2 (n int(10) not null primary key, d int(10), t timestamp);
185
insert into t1 values(1,1,NULL);
186
insert into t2 values(1,10,NULL),(2,20,NULL);
187
set timestamp=1038000000;
188
UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n;
189
select n,d,unix_timestamp(t) from t1;
190
n	d	unix_timestamp(t)
191
1	10	1038000000
192
select n,d,unix_timestamp(t) from t2;
193
n	d	unix_timestamp(t)
194
1	10	1038401397
195
2	20	1038401397
196
UPDATE t1,t2 SET 1=2 WHERE t1.n=t2.n;
197
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1=2 WHERE t1.n=t2.n' at line 1
198
drop table t1,t2;
199
set timestamp=0;
200
set sql_safe_updates=0;
201
create table t1 (n int(10) not null primary key, d int(10));
202
create table t2 (n int(10) not null primary key, d int(10));
203
insert into t1 values(1,1), (3,3);
204
insert into t2 values(1,10),(2,20);
205
UPDATE t2 left outer join t1 on t1.n=t2.n  SET t1.d=t2.d;
206
select * from t1;
207
n	d
208
1	10
209
3	3
210
select * from t2;
211
n	d
212
1	10
213
2	20
214
drop table t1,t2;
215
create table t1 (n int(10), d int(10));
216
create table t2 (n int(10), d int(10));
217
insert into t1 values(1,1),(1,2);
218
insert into t2 values(1,10),(2,20);
219
UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
220
select * from t1;
221
n	d
222
1	10
223
1	10
224
select * from t2;
225
n	d
226
1	30
227
2	20
228
drop table t1,t2;
229
create table t1 (n int(10), d int(10));
230
create table t2 (n int(10), d int(10));
231
insert into t1 values(1,1),(3,2);
232
insert into t2 values(1,10),(1,20);
233
UPDATE t1,t2 SET t1.d=t2.d,t2.d=30 WHERE t1.n=t2.n;
234
select * from t1;
235
n	d
236
1	10
237
3	2
238
select * from t2;
239
n	d
240
1	30
241
1	30
242
UPDATE t1 a ,t2 b SET a.d=b.d,b.d=30 WHERE a.n=b.n;
243
select * from t1;
244
n	d
245
1	30
246
3	2
247
select * from t2;
248
n	d
249
1	30
250
1	30
251
DELETE a, b  FROM t1 a,t2 b where a.n=b.n;
252
select * from t1;
253
n	d
254
3	2
255
select * from t2;
256
n	d
257
drop table t1,t2;
258
CREATE TABLE t1 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
259
INSERT INTO t1 VALUES (1,'jedan'),(2,'dva'),(3,'tri'),(4,'xxxxxxxxxx'),(5,'a'),(10,''),(11,''),(12,''),(13,'');
260
CREATE TABLE t2 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
261
INSERT INTO t2 VALUES (1,'jedan'),(2,'dva'),(3,'tri'),(4,'xxxxxxxxxx'),(5,'a');
262
CREATE TABLE t3 ( broj int(4) unsigned NOT NULL default '0',  naziv char(25) NOT NULL default 'NEPOZNAT',  PRIMARY KEY  (broj)) ENGINE=MyISAM;
263
INSERT INTO t3 VALUES (1,'jedan'),(2,'dva');
264
update t1,t2 set t1.naziv="aaaa" where t1.broj=t2.broj;
265
update t1,t2,t3 set t1.naziv="bbbb", t2.naziv="aaaa" where t1.broj=t2.broj and t2.broj=t3.broj;
266
drop table t1,t2,t3;
267
CREATE TABLE t1 (a int not null primary key, b int not null, key (b));
268
CREATE TABLE t2 (a int not null primary key, b int not null, key (b));
269
INSERT INTO t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
270
INSERT INTO t2 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9);
271
update t1,t2 set t1.a=t1.a+100;
272
select * from t1;
273
a	b
274
101	1
275
102	2
276
103	3
277
104	4
278
105	5
279
106	6
280
107	7
281
108	8
282
109	9
283
update t1,t2 set t1.a=t1.a+100 where t1.a=101;
284
select * from t1;
285
a	b
286
201	1
287
102	2
288
103	3
289
104	4
290
105	5
291
106	6
292
107	7
293
108	8
294
109	9
295
update t1,t2 set t1.b=t1.b+10 where t1.b=2;
296
select * from t1;
297
a	b
298
201	1
299
102	12
300
103	3
301
104	4
302
105	5
303
106	6
304
107	7
305
108	8
306
109	9
307
update t1,t2 set t1.b=t1.b+2,t2.b=t1.b+10 where t1.b between 3 and 5 and t2.a=t1.a-100;
308
select * from t1;
309
a	b
310
201	1
311
102	12
312
103	5
313
104	6
314
105	7
315
106	6
316
107	7
317
108	8
318
109	9
319
select * from t2;
320
a	b
321
1	1
322
2	2
323
3	13
324
4	14
325
5	15
326
6	6
327
7	7
328
8	8
329
9	9
330
update t1,t2 set t1.b=t2.b, t1.a=t2.a where t1.a=t2.a and not exists (select * from t2 where t2.a > 10);
331
drop table t1,t2;
332
CREATE TABLE t3 (  KEY1 varchar(50) NOT NULL default '',  PARAM_CORR_DISTANCE_RUSH double default NULL,  PARAM_CORR_DISTANCE_GEM double default NULL,  PARAM_AVG_TARE double default NULL,  PARAM_AVG_NB_DAYS double default NULL,  PARAM_DEFAULT_PROP_GEM_SRVC varchar(50) default NULL,  PARAM_DEFAULT_PROP_GEM_NO_ETIK varchar(50) default NULL,  PARAM_SCENARIO_COSTS varchar(50) default NULL,  PARAM_DEFAULT_WAGON_COST double default NULL,  tmp int(11) default NULL,  PRIMARY KEY  (KEY1)) ENGINE=MyISAM;
333
INSERT INTO t3 VALUES ('A',1,1,22,3.2,'R','R','BASE2',0.24,NULL);
334
create table t1 (A varchar(1));
335
insert into t1 values  ("A") ,("B"),("C"),("D");
336
create table t2(Z varchar(15));
337
insert into t2(Z)  select concat(a.a,b.a,c.a,d.a) from t1 as a, t1 as b, t1 as c, t1 as d;
338
update t2,t3 set Z =param_scenario_costs;
339
drop table t1,t2,t3;
340
create table t1 (a int, b int);
341
create table t2 (a int, b int);
342
insert into t1 values (1,1),(2,1),(3,1);
343
insert into t2 values (1,1), (3,1);
344
update t1 left join t2  on t1.a=t2.a set t1.b=2, t2.b=2 where t1.b=1 and t2.b=1 or t2.a is NULL;
345
select t1.a, t1.b,t2.a, t2.b from t1 left join t2  on t1.a=t2.a where t1.b=1 and t2.b=1 or t2.a is NULL;
346
a	b	a	b
347
2	2	NULL	NULL
348
drop table t1,t2;
349
create table t1 (a int not null auto_increment primary key, b int not null);
350
insert into t1 (b) values (1),(2),(3),(4);
351
update t1, t1 as t2 set t1.b=t2.b+1 where t1.a=t2.a;
352
select * from t1;
353
a	b
354
1	2
355
2	3
356
3	4
357
4	5
358
drop table t1;
359
create table t1(id1 smallint(5), field char(5));
360
create table t2(id2 smallint(5), field char(5));
361
insert into t1 values (1, 'a'), (2, 'aa');
362
insert into t2 values (1, 'b'), (2, 'bb');
363
select * from t1;
364
id1	field
365
1	a
366
2	aa
367
select * from t2;
368
id2	field
369
1	b
370
2	bb
371
update t2 inner join t1 on t1.id1=t2.id2
372
set t2.field=t1.field
373
where 0=1;
374
update t2, t1 set t2.field=t1.field
375
where t1.id1=t2.id2 and 0=1;
376
delete t1, t2 from t2 inner join t1 on t1.id1=t2.id2
377
where 0=1;
378
delete t1, t2 from t2,t1 
379
where t1.id1=t2.id2 and 0=1;
380
drop table t1,t2;
381
create table t1 ( a int not null, b int not null) ;
382
alter table t1 add index i1(a);
383
delete from t1 where a > 2000000;
384
create table t2 like t1;
385
insert into t2 select * from t1;
386
select 't2 rows before small delete', count(*) from t1;
387
t2 rows before small delete	count(*)
388
t2 rows before small delete	2000000
389
delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 2;
390
select 't2 rows after small delete', count(*) from t2;
391
t2 rows after small delete	count(*)
392
t2 rows after small delete	1999999
393
select 't1 rows after small delete', count(*) from t1;
394
t1 rows after small delete	count(*)
395
t1 rows after small delete	1999999
396
delete t1,t2 from t1,t2 where t1.b=t2.a and t1.a < 100*1000;
397
select 't2 rows after big delete', count(*) from t2;
398
t2 rows after big delete	count(*)
399
t2 rows after big delete	1900001
400
select 't1 rows after big delete', count(*) from t1;
401
t1 rows after big delete	count(*)
402
t1 rows after big delete	1900001
403
drop table t1,t2;
404
CREATE TABLE t1 ( a int );
405
CREATE TABLE t2 ( a int );
406
DELETE t1 FROM t1, t2 AS t3;
407
DELETE t4 FROM t1, t1 AS t4;
408
DELETE t3 FROM t1 AS t3, t1 AS t4;
409
DELETE t1 FROM t1 AS t3, t2 AS t4;
410
ERROR 42S02: Unknown table 't1' in MULTI DELETE
411
INSERT INTO t1 values (1),(2);
412
INSERT INTO t2 values (1),(2);
413
DELETE t1 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=1;
414
SELECT * from t1;
415
a
416
1
417
2
418
SELECT * from t2;
419
a
420
2
421
DELETE t2 FROM t1 AS t2, t2 AS t1 where t1.a=t2.a and t1.a=2;
422
SELECT * from t1;
423
a
424
1
425
SELECT * from t2;
426
a
427
2
428
DROP TABLE t1,t2;
429
create table `t1` (`p_id` int(10) unsigned NOT NULL auto_increment, `p_code` varchar(20) NOT NULL default '', `p_active` tinyint(1) unsigned NOT NULL default '1', PRIMARY KEY (`p_id`) );
430
create table `t2` (`c2_id` int(10) unsigned NULL auto_increment, `c2_p_id` int(10) unsigned NOT NULL default '0', `c2_note` text NOT NULL, `c2_active` tinyint(1) unsigned NOT NULL default '1', PRIMARY KEY (`c2_id`), KEY `c2_p_id` (`c2_p_id`) );
431
insert into t1 values (0,'A01-Comp',1);
432
insert into t1 values (0,'B01-Comp',1);
433
insert into t2 values (0,1,'A Note',1);
434
update t1 left join t2 on p_id = c2_p_id set c2_note = 'asdf-1' where p_id = 2;
435
select * from t1;
436
p_id	p_code	p_active
437
1	A01-Comp	1
438
2	B01-Comp	1
439
select * from t2;
440
c2_id	c2_p_id	c2_note	c2_active
441
1	1	A Note	1
442
drop table t1, t2;
443
create database mysqltest;
444
create table mysqltest.t1 (a int, b int, primary key (a));
445
create table mysqltest.t2 (a int, b int, primary key (a));
446
create table mysqltest.t3 (a int, b int, primary key (a));
447
grant select on mysqltest.* to mysqltest_1@localhost;
448
grant update on mysqltest.t1 to mysqltest_1@localhost;
449
update t1, t2 set t1.b=1 where t1.a=t2.a;
450
update t1, t2 set t1.b=(select t3.b from t3 where t1.a=t3.a) where t1.a=t2.a;
451
revoke all privileges on mysqltest.t1 from mysqltest_1@localhost;
452
revoke all privileges on mysqltest.* from mysqltest_1@localhost;
453
delete from mysql.user where user=_binary'mysqltest_1';
454
drop database mysqltest;
455
create table t1 (a int, primary key (a));
456
create table t2 (a int, primary key (a));
457
create table t3 (a int, primary key (a));
458
delete t1,t3 from t1,t2 where t1.a=t2.a and t2.a=(select t3.a from t3 where t1.a=t3.a);
459
ERROR 42S02: Unknown table 't3' in MULTI DELETE
460
drop table t1, t2, t3;
461
create table t1 (col1 int);
462
create table t2 (col1 int);
463
update t1,t2 set t1.col1 = (select max(col1) from t1) where t1.col1 = t2.col1;
464
ERROR HY000: You can't specify target table 't1' for update in FROM clause
465
delete t1 from t1,t2 where t1.col1 < (select max(col1) from t1) and t1.col1 = t2.col1;
466
ERROR HY000: You can't specify target table 't1' for update in FROM clause
467
drop table t1,t2;
468
create table t1 (
469
aclid bigint not null primary key, 
470
status tinyint(1) not null 
471
) engine = innodb;
472
create table t2 (
473
refid bigint not null primary key, 
474
aclid bigint, index idx_acl(aclid) 
475
) engine = innodb;
476
insert into t2 values(1,null);
477
delete t2, t1 from t2 left join t1 on (t2.aclid=t1.aclid) where t2.refid='1';
478
drop table t1, t2;
479
create table t1(a int);
480
create table t2(a int);
481
delete from t1,t2 using t1,t2 where t1.a=(select a from t1);
482
ERROR HY000: You can't specify target table 't1' for update in FROM clause
483
drop table t1, t2;
484
create table t1 ( c char(8) not null ) engine=innodb;
485
insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
486
insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
487
alter table t1 add b char(8) not null;
488
alter table t1 add a char(8) not null;
489
alter table t1 add primary key (a,b,c);
490
update t1 set a=c, b=c;
491
create table t2 like t1;
492
insert into t2 select * from t1;
493
delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
494
drop table t1,t2;
495
create table t1 ( c char(8) not null ) engine=innodb;
496
insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9');
497
insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F');
498
alter table t1 add b char(8) not null;
499
alter table t1 add a char(8) not null;
500
alter table t1 add primary key (a,b,c);
501
update t1 set a=c, b=c;
502
create table t2 like t1;
503
insert into t2 select * from t1;
504
delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b;
505
drop table t1,t2;
506
create table t1 (a int, b int);
507
insert into t1 values (1, 2), (2, 3), (3, 4);
508
create table t2 (a int);
509
insert into t2 values (10), (20), (30);
510
create view v1 as select a as b, a/10 as a from t2;
511
lock table t1 write;
512
alter table t1 add column c int default 100 after a;
513
update t1, v1 set t1.b=t1.a+t1.b+v1.b where t1.a=v1.a;
514
unlock tables;
515
select * from t1;
516
a	c	b
517
1	100	13
518
2	100	25
519
3	100	37
520
select * from t2;
521
a
522
10
523
20
524
30
525
drop view v1;
526
drop table t1, t2;
527
create table t1 (i1 int, i2 int, i3 int);
528
create table t2 (id int, c1 varchar(20), c2 varchar(20));
529
insert into t1 values (1,5,10),(3,7,12),(4,5,2),(9,10,15),(2,2,2);
530
insert into t2 values (9,"abc","def"),(5,"opq","lmn"),(2,"test t","t test");
531
select * from t1 order by i1;
532
i1	i2	i3
533
1	5	10
534
2	2	2
535
3	7	12
536
4	5	2
537
9	10	15
538
select * from t2;
539
id	c1	c2
540
9	abc	def
541
5	opq	lmn
542
2	test t	t test
543
update t1,t2 set t1.i2=15, t2.c2="ppc" where t1.i1=t2.id;
544
select * from t1 order by i1;
545
i1	i2	i3
546
1	5	10
547
2	15	2
548
3	7	12
549
4	5	2
550
9	15	15
551
select * from t2 order by id;
552
id	c1	c2
553
2	test t	ppc
554
5	opq	lmn
555
9	abc	ppc
556
delete t1.*,t2.* from t1,t2 where t1.i2=t2.id;
557
select * from t1 order by i1;
558
i1	i2	i3
559
2	15	2
560
3	7	12
561
9	15	15
562
select * from t2 order by id;
563
id	c1	c2
564
2	test t	ppc
565
9	abc	ppc
566
drop table t1, t2;
567
create table t1 (i1 int auto_increment not null, i2 int, i3 int, primary key (i1));
568
create table t2 (id int auto_increment not null, c1 varchar(20), c2 varchar(20), primary key(id));
569
insert into t1 values (1,5,10),(3,7,12),(4,5,2),(9,10,15),(2,2,2);
570
insert into t2 values (9,"abc","def"),(5,"opq","lmn"),(2,"test t","t test");
571
select * from t1 order by i1;
572
i1	i2	i3
573
1	5	10
574
2	2	2
575
3	7	12
576
4	5	2
577
9	10	15
578
select * from t2 order by id;
579
id	c1	c2
580
2	test t	t test
581
5	opq	lmn
582
9	abc	def
583
update t1,t2 set t1.i2=15, t2.c2="ppc" where t1.i1=t2.id;
584
select * from t1 order by i1;
585
i1	i2	i3
586
1	5	10
587
2	15	2
588
3	7	12
589
4	5	2
590
9	15	15
591
select * from t2 order by id;
592
id	c1	c2
593
2	test t	ppc
594
5	opq	lmn
595
9	abc	ppc
596
delete t1.*,t2.* from t1,t2 where t1.i2=t2.id;
597
select * from t1 order by i1;
598
i1	i2	i3
599
2	15	2
600
3	7	12
601
9	15	15
602
select * from t2 order by id;
603
id	c1	c2
604
2	test t	ppc
605
9	abc	ppc
606
drop table t1, t2;
607
CREATE TABLE `t1` (
608
`a` int(11) NOT NULL auto_increment,
609
`b` int(11) default NULL,
610
PRIMARY KEY  (`a`)
611
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;
612
CREATE TABLE `t2` (
613
`a` int(11) NOT NULL auto_increment,
614
`b` int(11) default NULL,
615
PRIMARY KEY  (`a`)
616
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;
617
set @sav_binlog_format=  @@session.binlog_format;
618
set @@session.binlog_format= mixed;
619
insert into t1 values (1,1),(2,2);
620
insert into t2 values (1,1),(4,4);
621
reset master;
622
UPDATE t2,t1 SET t2.a=t1.a+2;
623
ERROR 23000: Duplicate entry '3' for key 'PRIMARY'
624
select * from t2 /* must be (3,1), (4,4) */;
625
a	b
626
3	1
627
4	4
628
show master status /* there must be the UPDATE query event */;
629
File	Position	Binlog_Do_DB	Binlog_Ignore_DB
630
master-bin.000001	198		
631
delete from t1;
632
delete from t2;
633
insert into t1 values (1,2),(3,4),(4,4);
634
insert into t2 values (1,2),(3,4),(4,4);
635
reset master;
636
UPDATE t2,t1  SET t2.a=t2.b where t2.a=t1.a;
637
ERROR 23000: Duplicate entry '4' for key 'PRIMARY'
638
show master status /* there must be the UPDATE query event */;
639
File	Position	Binlog_Do_DB	Binlog_Ignore_DB
640
master-bin.000001	213		
641
drop table t1, t2;
642
set @@session.binlog_format= @sav_binlog_format;
643
drop table if exists t1, t2, t3;
644
CREATE TABLE t1 (a int, PRIMARY KEY (a));
645
CREATE TABLE t2 (a int, PRIMARY KEY (a));
646
CREATE TABLE t3 (a int, PRIMARY KEY (a)) ENGINE=MyISAM;
647
create trigger trg_del_t3 before  delete on t3 for each row insert into t1 values (1);
648
insert into t2 values (1),(2);
649
insert into t3 values (1),(2);
650
reset master;
651
delete t3.* from t2,t3 where t2.a=t3.a;
652
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
653
select count(*) from t1 /* must be 1 */;
654
count(*)
655
1
656
select count(*) from t3 /* must be 1 */;
657
count(*)
658
1
659
drop table t1, t2, t3;
660
end of tests