tags:

views:

32

answers:

1

Hi,

It seems extract function is not supported by SQLite3 for timestamp types (ref). For example;

select
 extract(year from l_shipdate) as l_year
from
 ...

gives the following error; Error: near "from": syntax error

I wonder whether there is an alternative way to do this in SQLite3 (or through rewriting the SQL query).

Thanks in advance,

+4  A: 

Try this

select strftime('%Y', l_shipdate) as l_year from...
Pentium10