mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
6 lines
138 B
SQL
6 lines
138 B
SQL
CREATE VIEW batteries_current
|
|
AS
|
|
SELECT battery_id, MAX(tracked_time) AS last_tracked_time
|
|
FROM battery_charge_cycles
|
|
GROUP BY battery_id
|