PostgreSQL Flashcards
What is PostgreSQL and what are some alternative relational databases?
A relational database management system (RDBMS).
MySQL, SQL Server by Microsoft, Oracle by Oracle Corporation.
What are some advantages of learning a relational database?
-they are the most widely used database
-they support good guarantees about data integrity.
-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?
- top command line
- sudo service postgresql status
- psql
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 the same set of attributes.
What is a row?
Rows are actual data values for a single group of related data within a table