PostgresQL intro and Database Flashcards
What is PostgreSQL and what are some alternative relational databases?
PostgreSQL is a powerful, free, open sourceRelational DatabaseManagement System (RDBMS).
Other popular relational databases include MySQL (also free), SQL Server by Microsoft, and Oracle by Oracle Corporation.
What are some advantages of learning a relational database?
Relational databases are arguably the most widely used kind of database. Many times when developers create a full stack developer, they are using a relational database.
What is one way to see if PostgreSQL is running?
sudo service postgresql status
What is a database schema?
A collection oftablesis called aschema. Aschemadefines how the data in a relational database should be organized.
What is a table?
A table is data that is in a list of rows where rows each have the same set of attributes.
What is a row?
A single instance of record in that table
What is RDBMS?
A relational database management system (RDBMSor just RDB) is a common type of database whose data is stored in tables