SELECT name FROM sqlite_schema
WHERE type ='table' AND
NOT LIKE 'sqlite_%'; name
Know Your Tools
Introduction
During this lab, you will get familiar with the most important tools that will be used during the course. These tools include (SQLite), (DB Browser), (Google Colab) for Python and (RStudio) for R.
SQLite and DB Browser
In this course, we will use SQLite and its graphical interface DB Browser to create and query DBMSs. During this lab, you will install and use the DB Browser or SQLite3. As an example for a database, we will use the Chinook
database. To download the .sqlite
file, open the Link and look for Chinook_Sqlite.sqlite
and Chinook_Sqlite.sql
. Right click on the link and Save Link As ...
to download the file into a location of your choice.
Google Colab for Python
For simplicity, we will use Google Colab for running the Python programs during the course. If you are familiar with other Integrated Development Environment such as Anaconda, PyCharm or Spyder, then use that IDE. Be careful that specific libraries may run only under a specific version of Python.
R & RStudio
We will be using the most popular development environment for R: RStudio. In the exercises below (and the readings for this lab from R4DS) you will set up your computer for doing the R practicals in later parts of this course.