9
9
# Set timezone to GMT-3, to make it possible to use "interval 3 hour"
12
10
create table t1 (Zeit time, Tag int not null, Monat int not null,
13
11
Jahr int not null, index(Tag), index(Monat), index(Jahr) );
14
12
insert into t1 values ("09:26:00",16,9,1998),("09:26:00",16,9,1998);