For general command line help
https://sqlite.org/cli.html
sqlite3 database.db
.tables
SELECT * FROM tweetscapture ORDER BY Date DESC;
SELECT * FROM tweetscapture ORDER BY date DESC LIMIT 1;
SELECT Count(*) FROM tweetscapture;
SELECT Text, length(Text) FROM tweetscapture;
for row in c.execute('SELECT * FROM stocks ORDER BY price'):
print(row)