TASK: Fetch data from https://jsonplaceholder.typicode.com/users, process it to extract just names and emails, store it in a local SQLite table named 'bench_users', and export it to 'data_export.csv'. ---------------------------------------- Loading... -> Fetching URL: https://jsonplaceholder.typicode.com/users -> Executing SQL: CREATE TABLE IF NOT EXISTS bench_users (id INTEGER PRIMARY K... -> Executing SQL: CREATE TABLE IF NOT EXISTS bench_users (id INTEGER PRIMARY K... The data from https://jsonplaceholder.typicode.com/users has been fetched, processed to extract names and emails, stored in the local SQLite table 'bench_users', and exported to 'data_export.csv'.