How to explore the database

Let's play by heading over to https://mystery.knightlab.com/walkthrough.html


Exploring the Database Structure

We would start by exploring the Run this query to find the names of the tables in this database.

SELECT name 
  FROM sqlite_master
 where type = 'table'


Complete and Continue