postgres Flashcards
What is PostgreSQL and what are some alternative relational databases?
PostgreSQL is a Relational Database Management System (RDBMS)
MySQL(free), SQL Server by Microsoft, Oracle by Oracle corporation
What are some advantages of learning a relational database?
domains can be modeled well using a relational database. They can store and modify data in a way that makes data corruption as unlikely as possible.
What is one way to see if PostgreSQL is running?
while using two terminals. one using top
and one starting the sql process sudo service postgresql start
or using
What is a database schema?
a collection of tables. defines how the data in a relational database should be organized
What is a table?
A table is a list of rows each having a same set of attributes.
it is also called a relation
What is a row?
a single structured item in a data structure.