mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
6 lines
160 B
Text
6 lines
160 B
Text
use test;
|
|
drop table if exists x;
|
|
create table x (n int);
|
|
insert into x values(9),(3),(12),(10);
|
|
alter table x order by n;
|
|
@r/alt000001.result select * from x;
|