mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
followup
This commit is contained in:
@ -41,8 +41,7 @@ interval(null, 1, 10, 100)
|
||||
-1
|
||||
drop table if exists t1,t2;
|
||||
create table t1 (id int(10) not null unique);
|
||||
create table t2 (id int(10) not null primary key,
|
||||
val int(10) not null);
|
||||
create table t2 (id int(10) not null primary key, val int(10) not null);
|
||||
insert into t1 values (1),(2),(4);
|
||||
insert into t2 values (1,1),(2,1),(3,1),(4,2);
|
||||
select one.id, elt(two.val,'one','two') from t1 one, t2 two where two.id=one.id;
|
||||
|
Reference in New Issue
Block a user