Database (Tutorials and CheatSheet)
This is a series of tutorials on how to use relational databases and the SQL database query language. We are using a Postgres database although the concepts apply generally to relational databases. All the concepts are included in the corresponding Database CheatSheet.
CheatSheet: Free web version |
Desktop version: for Mac or Windows to create or modify your own CheatSheets.
Data Types
In this section we go over data types. When creating a table in your database, you add columns. Every column must include a name and a data type. The datatype determines what type of data can be inserted in that column. We also go over how to use the PG Admin tool for accessing the database.
Open CheatSheet