PostgresQL intro and Database Flashcards

1
Q

What is PostgreSQL and what are some alternative relational databases?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are some advantages of learning a relational database?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is one way to see if PostgreSQL is running?

A

sudo service postgresql status

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a database schema?

A

A collection oftablesis called aschema. Aschemadefines how the data in a relational database should be organized.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a table?

A

A table is data that is in a list of rows where rows each have the same set of attributes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a row?

A

A single instance of record in that table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is RDBMS?

A

A relational database management system (RDBMSor just RDB) is a common type of database whose data is stored in tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly