How to build a nested object from 2 SQLite tables?
Having not a SQLite background, I’m struggling building a "simple" SQLite query. Considering the simplified schema below: ** Table: EVENTS ** id content 1 abc 2 xyz ** Table: TIMESLOTS ** id start end 1 05-2022 06-2022 1 10-2022 12-2022 2 ……. ……. I’d like to build object like this on: { id: 1, content:… Read More How to build a nested object from 2 SQLite tables?