removed debug line and unneeded code

This commit is contained in:
Finn 2018-03-02 16:42:30 +00:00
parent ebcc79fd36
commit 1377742acd
3 changed files with 0 additions and 26 deletions

View file

@ -15,7 +15,6 @@ SELECT "value",
"purchase_time",
"buyer_id",
"seller_id",
"essential",
DATE_TRUNC('hour', "purchase_time") AS "quantised_hours",
DATE_TRUNC('day', "purchase_time") AS "quantised_days",
DATE_TRUNC('week', "purchase_time") AS "quantised_weeks"

View file

@ -15,7 +15,6 @@ SELECT "value",
"purchase_time",
"buyer_id",
"seller_id",
"essential",
DATETIME(STRFTIME('%Y-%m-%d %H:00:00',"purchase_time")) AS "quantised_hours",
DATETIME(STRFTIME('%Y-%m-%d 00:00:00',"purchase_time")) AS "quantised_days",
DATETIME(STRFTIME('%Y-%m-%d 00:00:00',"purchase_time", 'weekday 1')) AS "quantised_weeks"