SELECT customers.name, orders.order_date FROM customers JOIN orders ON customers.customer_id = orders.customer_id; This would return the names of customers and the dates of their orders.
Usage: db-to-sqlite [OPTIONS] CONNECTION PATH Load data from any database into SQLite. PATH is a path to the SQLite file to create, e.c. /tmp/my_database.db ...