innerjoin
Inner join between two tables or timetables
Syntax
Description
creates the table or timetable, T = innerjoin(Tleft,Tright)T, as the inner
join of Tleft and Tright using
key variables. An inner
join combines rows where the key variables have matching values. For example, if
Tleft has variables named Key1 and
Var1, and Tright has variables
Key1 and Var2, then
T=innerjoin(Tleft,Tright) uses Key1 as a
key variable.

By default, the key variables are:
Variables that have the same names in
TleftandTright, if both inputs are tables, or ifTleftis a timetable andTrightis a table.Vectors of row times, if both
TleftandTrightare timetables.
The matching values of the key variables in the left and right tables do not have to be in the same order. Inner joins can perform one-to-many and many-to-one matches between the key variables of the two tables. That is, a value that occurs once in a key variable of the left table can have multiple matches in the right table. Similarly, a value that occurs once in a key variable of the right table can have multiple matches in the left table.
You can perform inner joins only on certain combinations of tables and timetables.
If
Tleftis a table, thenTrightmust be a table.innerjoinreturnsTas a table.If
Tleftis a timetable, thenTrightcan be either a table or a timetable.innerjoinreturnsTas a timetable for either combination of inputs.
performs the inner-join operation with additional options specified by one or more
T = innerjoin(Tleft,Tright,Name,Value)Name,Value pair arguments.
For example, you can specify the variables to use as key variables.
Examples
Input Arguments
Name-Value Arguments
Output Arguments
More About
Algorithms
The vector of row labels from an input table or timetable can be used as a key variable, alone or in combination with other key variables. Row labels are the row names of a table or the row times of a timetable. To use this vector as a key, specify it as
'Row'(for the row names of a table), as the name of a timetable vector of row times, or as the value of, whereT.Properties.DimensionNames{1}is the table or timetable.TIn general,
innerjoincopies row labels from the input tableTleftto the output tableT.If
Tlefthas no row labels, thenThas no row labels.If
Tlefthas row labels, theninnerjoincopies row labels fromTleftto create row labels inT.However, if both
TleftandTrightare tables, but you do not specify either input’s row names as a key, theninnerjoindoes not create row names inT.If both
TleftandTrightare timetables, but you do not specify either input’s row times as a key, theninnerjoincopies row times fromTlefttoT.
You cannot perform an inner join using the row labels of
Tleftas the left key and a variable ofTrightas the right key. To perform the inner join, convert the row labels ofTleftto a table variable and use the new table variable as a key.
Extended Capabilities
Version History
Introduced in R2013b