- #1
- 7,375
- 11,342
Hi All,
When operating on tables T1, T2 and obtaining a table T3, one obtains rows {##r_{3k}##} in T3 that are obtained from
rows {## r_{1i}##} and {##r_{2j} ##} by what I call "concatenation" . I wonder if there is a formal name for it.
Specifically, say, during an inner join between T1, T2 along the field f , we obtain a table T3 in whichthe general row ## r_{3k} ## in T3 is obtained by appending to a row ##r_{1i} ## in T1, columns in/from rows ## r_{2j}## for which the values on f are equal to each other , i.e. if, f(##r_{ij}##)=f##(r_{2k})## we form ##r_{3k}##
containing all columns on T1, together with all columns on T2 . QUESTION: Is there a formal name for the
operation of obtaining a row by appending rows from two different tables?
EDIT: Concrete Example:
Given : https://en.wikipedia.org/wiki/Relational_algebra#Natural_join
We obtain rows in the join by unioning columns in both tables according to some rules. What is the
name of this general operation by which we obtain rows in the result table by unioning rows of the
input tables?
Thanks.
When operating on tables T1, T2 and obtaining a table T3, one obtains rows {##r_{3k}##} in T3 that are obtained from
rows {## r_{1i}##} and {##r_{2j} ##} by what I call "concatenation" . I wonder if there is a formal name for it.
Specifically, say, during an inner join between T1, T2 along the field f , we obtain a table T3 in whichthe general row ## r_{3k} ## in T3 is obtained by appending to a row ##r_{1i} ## in T1, columns in/from rows ## r_{2j}## for which the values on f are equal to each other , i.e. if, f(##r_{ij}##)=f##(r_{2k})## we form ##r_{3k}##
containing all columns on T1, together with all columns on T2 . QUESTION: Is there a formal name for the
operation of obtaining a row by appending rows from two different tables?
EDIT: Concrete Example:
Given : https://en.wikipedia.org/wiki/Relational_algebra#Natural_join
We obtain rows in the join by unioning columns in both tables according to some rules. What is the
name of this general operation by which we obtain rows in the result table by unioning rows of the
input tables?
Thanks.
Last edited: