mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
added depended subselect processing
This commit is contained in:
@@ -8,6 +8,8 @@ create table t4 (a int, b int);
|
||||
insert into t1 values (2);
|
||||
insert into t2 values (1,7),(2,7);
|
||||
insert into t4 values (4,8),(3,8),(5,9);
|
||||
select (select a from t1 where t1.a=t2.a), a from t2;
|
||||
select (select a from t1 where t1.a=t2.b), a from t2;
|
||||
select (select a from t1), a from t2;
|
||||
select (select a from t3), a from t2;
|
||||
select * from t2 where t2.a=(select a from t1);
|
||||
|
||||
Reference in New Issue
Block a user