Great!
For those who, like me, are not very familiar with SQLite, here is a brief guide to search the database:
1. Access the Website:
- Open your browser and go to
https://sqliteonline.com/.
2. Open the Local Database:
- Extract the file submini_archive_full_v1_2.db of the .zip file
- In the browser click the „Import“ button on the top menu.
- Upload your local SQLite database file (e.g., `.db` file) from your computer by selecting it in the file chooser.
- Wait for the database to load; it will appear in the database list (`subminl_archive_full_v1.db`).
3. Explore the Database:
- In the left panel, expand the database name to see tables and views (e.g., `view_minox_mentions`).
- To view all data, enter `SELECT * FROM view_minox_mentions` in the SQL editor and click „Run“.
4. Run a new Query:
- In the SQL editor, enter the following query to find entries with "mamiya super 16" in `subject` or `body`, sorted by date (newest first):
SELECT * FROM view_minox_mentions
WHERE subject LIKE '%mamiya super 16%'
OR body LIKE '%mamiya super 16%'
ORDER BY date DESC;
- Click „Run“ to display the results: