1SELECT t.name, 2 c.ts, 3 c.value 4FROM counter_track t 5 JOIN counter c ON t.id = c.track_id 6WHERE t.name = 'ScreenState'; 7