corrected result file

- missing order by
parent bcd8fab1
......@@ -333,7 +333,7 @@ end if;
end//
insert into test.t1 (a1) values (1)//
insert into test.t1 (a1,a2) values (2, 'ccccccc')//
select * from test.t1//
select * from test.t1 order by a1//
a1 a2 a3
1 trg1 works on a2 field trg1 works on a3 field
2 ccccccc trg1 works on a3 field
......
......@@ -375,7 +375,7 @@ delimiter //;
end//
insert into test.t1 (a1) values (1)//
insert into test.t1 (a1,a2) values (2, 'ccccccc')//
select * from test.t1//
select * from test.t1 order by a1//
delimiter ;//
DELETE FROM test.t1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment