JSON Support
Modern SQL databases (including SQLite) support JSON data. You can store JSON in a text column and query it.
SELECT json_extract(data, '$.name')
FROM user_logs;
Task:
Extract the 'city' field from the attributes JSON column for all users.