blob: e653d6a7c231dd9a8338eb50f65e70e8bc7f9dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use mysqltest_events_test;
"Should get 3 rows : abc1, abc2, abc3
select distinct name from execution_log order by name;
name
abc1
abc2
abc3
drop event abc1;
drop event abc2;
drop event abc3;
drop table execution_log;
drop database mysqltest_events_test;
|