
This is the snapshot of my column in sqlite db and its datatype in schema is defined has DATETIME. Now I want to apply some aggregation function like sum() to calculate the total of this column.
the query that I used is:
select sum(total_expend_time) from timetable; but it returns 0.0 as result.