简体   繁体   中英

get data from last week monday to last week sunday in postgresql

I have a request which must be formulated as follows in postgresql:

SELECT AVG(voltage) FROM TABLE1,TABLE2
WHERE TABLE1.id=TABLE2.table1_id AND recharged BETWEEN last_week_monday AND last_week_sunday
GROUP BY TABLE1.name

I want to know how to get last_week_monday and last_week_sunday

One option uses DATE_TRUNC :

SELECT AVG(voltage)
FROM TABLE1 t1
INNER JOIN TABLE2 t2
    ON t1.id = t2.table1_id
WHERE recharged >= DATE_TRUNC('week', NOW()) - interval '7 day' AND
      recharged < DATE_TRUNC('week', NOW());

Postgres' DATE_TRUNC() function treats Monday as the start of the week.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM