mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
9 lines
176 B
Text
9 lines
176 B
Text
|
create table t1 (pk int primary key, a int);
|
||
|
insert into t1 values (1,1),(2,2),(3,3),(4,4);
|
||
|
alter table t1 engine=S3;
|
||
|
select a from t1 where pk in (2, 3);
|
||
|
a
|
||
|
2
|
||
|
3
|
||
|
drop table t1;
|