mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 02:36:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			152 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			152 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| CREATE VIEW habits_current
 | |
| AS
 | |
| SELECT habit_id, MAX(tracked_time) AS last_tracked_time
 | |
| FROM habits_log
 | |
| GROUP BY habit_id
 | |
| ORDER BY MAX(tracked_time) DESC
 |