-
What is a Row?
A data set representing a single item -
What is a Column?
A labeled element of a tuple like “Address” or “Date of birth” -
What is a Table?
A set of Tuples sharing the same attributes, a set of columns and rows.
-
A row is what COBOL would say is a “record”. Its a collection of information about one instance of thing in the database.
-
A column is a consistent kind of information that’s available for every record in the database, even if the value is zero, undefined, or null. Users can ask for it with some expectation of having data returned and low expectations of returning an error.
-
A table is an orderly set of information in two degrees of discrete freedom. They are typically organized by row or column and may be arbitrarily sorted, searched, or filtered by any combination of values thereof.
-
What is a row?
Record -
What is a column?
Attribute -
What is a table?
Relation
1- dataset repressing a single item
2-a labelled element of tuple like address, birth …etc
3-a set of tuples sharing the same attributes (set of columns and rows)
-
What is a row?
A row is a record in a table, representing a single entry that contains data for each column in that table.
-
What is a column?
A column is a labeled element of a table, representing a specific attribute for all rows.
-
What is a table?
A table is a collection of rows and columns where rows represent records and columns represent attributes.