Using the SQLITE REPL, let’s see what the nypl_items table looks like. To load the database, first confirm that you are in the database-practice
directory. Start the Sqlite program:
sqlite3
Then, type this text to open our database:
.open file:nypldb.db
SELECT COUNT(*) FROM nypl_items;
SELECT * FROM nypl_items LIMIT 3;
SELECT DISTINCT language FROM nypl_items;