PostreSQL Databases Flashcards
What is a database schema?
A schema is a collection of tables. A schema defines how the data in a relational database should be organized. In relational databases, you typically have to define your schema up front and the database server will make sure that any data being written to the database conforms to that schema.
What is a table?
Relational databases store data in relations, commonly referred to as tables. A table is a list of rows each having the same set of attributes.
What is a row?
A table is a list of rows each having the same set of attributes. Rows are called “records” or “tuples”. A row is a record in the spreadsheet.
What is a column?
A column is an attribute. Columns represent values attributed to a record/row.