1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

for multy-delete command used same algorithm of table reference (alias)

This commit is contained in:
bell@sanja.is.com.ua
2004-01-20 19:16:18 +02:00
parent 501ae0bc52
commit 2a55a7684f
5 changed files with 6 additions and 7 deletions

View File

@ -218,7 +218,7 @@ select * from t2;
UPDATE t1 a ,t2 b SET a.d=b.d,b.d=30 WHERE a.n=b.n;
select * from t1;
select * from t2;
DELETE t1, t2 FROM t1 a,t2 b where a.n=b.n;
DELETE a, b FROM t1 a,t2 b where a.n=b.n;
select * from t1;
select * from t2;
drop table t1,t2;