What is a tuple in a relational schema?
2025
What is a tuple in a relational schema?
- A.
A type of key
- B.
A set of relationships
- C.
A single row in a table
- D.
A single column
Attempted by 201 students.
Show answer & explanation
Correct answer: C
In a relational database schema, data is organized into tables consisting of rows and columns. A tuple corresponds to a single row within this table structure, representing one specific record or instance of the entity described by the schema. Each tuple contains a set of values, one for each attribute (column) defined in that table. For example, if a 'Students' table has columns for ID and Name, one tuple would represent the data for exactly one student.
Option A is incorrect because a key refers to an attribute or set of attributes used for identification, not the row itself.
Option D is incorrect because a single column represents an attribute or field, whereas a tuple encompasses the entire horizontal collection of data for one record. Therefore, understanding that a tuple is synonymous with a row is fundamental to relational database theory.