Loading and Querying the Database
Explore the imported Chinook dataset with SQL queries.
We'll cover the following...
We'll cover the following...
Chinook database
We’ll be doing four tasks in this section.
- Import the
Chinookdatabase in PostgreSQL using pgloader. First, we need to start the PostgreSQL service by using the following command:
service postgresql start
Use the following command to run the upcoming commands as the PostgreSQL superuser.
su - postgres
Note: The
Chinookdatabase is already created for you.
- Log in to the database. To use the psql, type the following command in the terminal:
psql
Use the following command to log in to the Chinook database:
\c chinook
- Now, that the dataset is loaded, list the relations in the
Chinookdatabase using the following command:
\dt
- The next task is to see the details of any table in the
Chinookdatabase. We’ll see the details of thetracktable using the following command:
\d track
Click “Click to connect…” in the following terminal to start.
Tip: Press the up and down arrow keys to move between the rows and
qto ...