Postgres Flashcards

1
Q

What is PostgreSQL and what are some alternative relational databases?

A

powerful, free, open source Relational Database Management System , MySQL, SQL Server, Oracle

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

data integrity, storing related data,web developers work with a relational database at least a little bit during their career.

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 , top

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 of tables is called a schema. A schema defines 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

(relations) stored data that is related to each other, list of rows each having the same set of attributes. Attributes are commonly referred to as columns

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

What is a row?

A

a single structured data item in a table, represents a set of related data

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