Please explain what is meant by tuples in sql?Thanks..
|
Most of the answers here are on the right track. However, a row is not a tuple. Tuples
...assuming of course that x, y, and z are all integers. Also note that there is no such thing as a "duplicate" tuple. Thus, not only are the above equal, they're the same thing. Lastly, tuples can only contain known values (thus, no nulls). A row
Note that there are ways to "fake it" though. For example, consider this
Assuming that x is first, y is second, and z is third, this query may be rewritten like this:
Or this:
...but all we're really doing is changing the ordering rather than removing it. And also note that there may be unknown values as well. Thus, you may have rows with unknown values:
...but note that this comparison will always yield And lastly, rows may be duplicated. In other words, If this is a subject that interests you, I'd highly recommend reading SQL and Relational Theory: How to Write Accurate SQL Code by CJ Date.
UPDATE: I've expanded a little bit on this answer in a blog post here. |
||||
|
|
|
It's a shortened " It's a row of a rowset taken as a whole. If you issue:
, whole result will be a Some databases can work with a tuple as a whole. Like, you can do this:
, which checks that a whole |
||||
|
|
|
In relational databases, tables are relations (in mathematical meaning). Relations are sets of tuples. Thus table row in relational database is tuple in relation. Wiki on relations:
|
|||||||
|
|
row from a database table |
|||||||||||||||
|
|
tuple = 1 record; n-tuple = ordered list of 'n' records; Elmasri Navathe book (page 198 3rd edition). record = either ordered or unordered. |
|||
|
|
|
A tuple is used to define a slice of data from a cube; it is composed of an ordered collection of one member from one or more dimensions. A tuple is used to identify specific sections of multidimensional data from a cube; a tuple composed of one member from each dimension in a cube completely describes a cell value. |
|||||
|