Postgres Flashcards

1
Q

What is PostgreSQL and what are some alternative relational databases?

A

a powerful, free, open source Relational Database Management System. Others are MySQL, SQL Server by Microsoft, and Oracle by Oracle Corp

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

SQL-based, support good guarantees about data integrity, data corruption is unlikely

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

Collection of tables, also dictates the rules for how the database is structured (like a blueprint/instructions)

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 a list of rows each having 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

Contains columns of attributes

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