SQL and Relation Databases - Reading Assignment

  1. What is a row?
    A it is a record - data set representing a single item
  2. What is a column?
    A field or attribute- labeled element of a tuple, e.g. “Address” or “Date of birth”
  3. What is a table?
    relation or base relvar - A set of tuples sharing the same attributes; a set of columns and rows
1 Like
  1. What is a row? A data set representing a single item

  2. What is a column? A labeled element of a tuple. Ex: Address or DOB.

  3. What is a table? A set of tuples sharing the same attributes like columns or rows.

1 Like

SQL and Relational Databases - Reading

1. What is a row?

As it’s sound, it’s a single line of different data item, that can have one or many columns(Items) in that row.

2. What is a column?

A specific elements in the row, often used to keep track of different types of data related, as row number,date,time, item,price

3.What is a table?

It’s a combination of rows and columns, a collection of the data set w here the table name reflects the type of data it’s holds. The table are then used to search data from the columns and rows

1 Like
  • What is a row?
    A row is an SQL term for data representing a single item

  • What is a column?
    It’s an SQL term for a field with labeled elements e.g. addresses

  • What is a table?
    It’s the SQL term for a set of columns and rows sharing the same attributes.

1 Like
  1. What is a row?
    Answer - A data set representing a single item.
  2. What is a column?
    Answer - A labeled element of a tuple, e.g. “Address” or “Date of birth”.
  3. What is a table?
    Answer - A set of tuples sharing the same attributes; a set of columns and rows.
1 Like
  1. A row is a data set representing a single item. (record)

  2. A column is a labeled element of a structure containing multiple parts. (address or date of birth)

  3. A table is a set of tuples sharing the same attributes; a set of columns and rows.

1 Like

A Row is a record of a single Item.

A Columne is a labelt element of a single Item.

A Table is a set of Rows and Columnes who share the same Attributes.

1 Like
  1. What is a row? - A row contains Single item in the table

  2. What is a column? - The column contains attributes or the fields of the rows

  3. What is a table? - Its a collection of tuplets where each tuplets represent an attribute or field of an item

1 Like
  1. What is a row?
    A data set representing a single item
  2. What is a column?
    A labeled element of a tuple, e.g. “phone number” “Address” or “Date of birth”
  3. What is a table?
    A set of rows and columns sharing the same attributes
1 Like
  1. A data set representing a single item.

  2. A labeled element of a tuple “address”, “date of birth”.

  3. A set of columns and rows that share the same attributes.

1 Like
  1. A row is a data set representing a single item. A record.

  2. A column is a labeled element of a tuple, i. e. “Address” or “Date of Birth” etc. An attribute or field.

  3. A table is a set of tuples sharing the same attributes; a set of columns and rows. A relation.

1 Like
  1. A row is a set of data of a single item - record.
  2. A Column is a set of data values of a particular simple type, one value for each row of the database - Attribute/Field.
  3. A Table is a collection of related data held in a table format within a database. It consists of columns and rows.
1 Like
1. What is a row?
	a. A data set representing a single item
2. What is a column?
	a. A labeled element of a tuple, e.g. "Address" or "Date of birth"
3. What is a table?
	a. A set of tuples sharing the same attributes; a set of columns and rows
1 Like
  1. A row: meaning a single structured data item in a table. a database table can be thought of as consisting of rows and columns.

  2. A column: Is a set of data values of a particular simple type, one value for each row of the database. may contain text values, numbers, or even pointers to files in the operating system.

3)A table: flat file database, is a set of data elements (values) using a model of vertical columns and horizontal rows, the cell being the unit where a row and column store our data.

I think this is similar to Exel.

1 Like
  1. A single item data set.
  2. A labeled element of a table ie. Name , Date
  3. set of ordered lists that share attributes.
1 Like
  1. a data set holding data from a single like in microsoft excel the first row
  2. a column holds the attributes like all the “clients name”: thomas, ferenc, christian
  3. row and colums become a table; could look like this
    ID Client Color
    1 a red
    2 d green
    3 fe green
    4 ivan nice

:slight_smile:

1 Like
  1. What is a row?

A record. A single item

  1. What is a column?

A labeled element of a tuple

  1. What is a table?

A set of columns and rows

1 Like
  • What is a row?
    Is a record.
    *** What is a column
    Is an “attribute” Like age, model…

  • **What is a table
    Set of rows and column.

1 Like

A data set representing a single item
A labeled element of a tuple, e.g. “Address” or “Date of birth”
A set of tuples sharing the same attributes; a set of columns and rows

1 Like

Row:

Each row in a database table represents one instance of the type of object described in that table. A row is also called a record.

Column:

A Set of facts regarding an object. A column is also called an attribute or a field.

Table:

A table has rows and columns of information.

1 Like