SQLite
For general command line help
https://sqlite.org/cli.html
Access shell commands
To clear the terminal
Open/attach a database
Show tables
Select
Select everything from a table and order by desc
SELECT * FROM tweetscapture ORDER BY Date DESC;
SELECT * FROM tweetscapture ORDER BY date DESC LIMIT 1;