InnerJoin selects records that have matching values in both tables. left datatable is used as reference datatable. <!> InnerJoin transforms an expr column to a raw column
(right *DataTable, on []JoinOn)
| 11 | // left datatable is used as reference datatable. |
| 12 | // <!> InnerJoin transforms an expr column to a raw column |
| 13 | func (left *DataTable) InnerJoin(right *DataTable, on []JoinOn) (*DataTable, error) { |
| 14 | return newJoinImpl(innerJoin, []*DataTable{left, right}, on).Compute() |
| 15 | } |
| 16 | |
| 17 | // InnerJoin selects records that have matching values in both tables. |
| 18 | // tables[0] is used as reference datatable. |