Introduction to Database Design (Coding Bootcamp series)

Diana Bernardo
5 min readFeb 25, 2019

As I approach the end of my programming bootcamp at Green Fox Academy, I bring you something I have not mentioned yet but that is essential for any backend programmer: databases and relationships.

A database is a collection of tables, with each of them containing data about a different, but related subject. A table is composed of records and fields that contain data. Each row in a table is a record and each column is a field of that record.

--

--