create table test (t);
insert into test values ('2003-12-23 20:15:3');
insert into test values ('2003-12-23 20:15:3');
select * from test where strftime('%Y', datetime(t))='2003';Notice that the time value is malformed in that the seconds should most likely be '03' and not '3'.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

