postgres Flashcards
What is PostgreSQL and what are some alternative relational databases?
PostgreSQL is a relational database management system. Open source database. altervatives: MySQL, SQL Server by Microsoft, Oracle
What are some advantages of learning a relational database?
Guarantees data integrity.
This means that developers can set up their database to reject “bad” data and not worry about data being “half written”.
widely used and very powerful
What is one way to see if PostgreSQL is running?
command line
sudo service postgresql status
What is a database schema?
A collection of tables
What is a table?
What is a row?
A composite type represents the structure of a row or record; it is essentially just a list of field names and their data types.