|
Equi join is supported on the join condition by using an equality operator with inner join.
|
You must select a minimum of 2 tables. To add more than 2 tables, click Add. Click to delete any tables that you added. |
If you chose Selection in the Join Clause Using list | ||
---|---|---|
a. Under the Join group, in the Left Table list, select the table name or alias. b. Under the Join Conditions group, do the following: a. In the Join Type list, select one of the following options: ▪ Inner Join ▪ Left Outer Join ▪ Full Outer Join ▪ Right Outer Join
b. In the Right Table list, select the table name or alias. c. In the Left Column list, select the column that you want on the left for the join condition. In case of mapping, append the column name with the table name. For example, tablename.columnname. If you have specified the alias, append the column name with the alias. For example: alias.columnname. d. In the Operator list, select the appropriate conditional operator. e. In the Right Column list, select the column that you want on the right for the join condition. In case of mapping, append the column name with the table name/alias. For example, tablename.columnname. If you have specified the alias, append the column name with the alias. For example: alias.columnname. Click Add to add multiple join conditions. Click to delete any join condition that you added. |
If you chose Query in the Join Clause Using list |
---|
In the Join Clause field, enter all required inputs in either of the following SQL Query formats: • table1 FULL OUTER JOIN table2 ON table1.column_name = table2.column_name • table1 alias1 FULL OUTER JOIN table2 alias2 ON alias1.column_name = alias2.column_name |
If you chose Form |
---|
a. Under the Select Columns group, select the Distinct check box to return unique values in the column. This is optional. b. Under the Columns group, click Add, and in the Column list, select the column that you want to display in the result. In case of mapping, append the column name with the table name/alias. For example, tablename.columnname. If you have specified the alias, append the column name with the alias. For example: alias.columnname. Click Add to add multiple columns. Click to delete any column that you added. c. Under the Where group, in the Join Clauses by list, select one of the following options: ◦ AND—All conditions specified under the Attributes group must return true. ◦ OR—Either of the conditions specified under the Attributes group must return true. d. Under the Attributes group, click Add, and do the following: a. In the Attribute list, select the column that you want to filter. In case of mapping, append the column name with the table name/alias. For example, tablename.columnname. If you have specified the alias, append the column name with the alias. For example: alias.columnname. b. In the Operator list, select the appropriate conditional operator. c. In the Value field, enter the value of the column for the filter. Click Add to add multiple attributes to the join clause. Click to delete any attribute that you added. If you add the same attributes and select AND in the Join Clauses by list, the attributes are joined by the OR operator. |
If you chose Assign JSON |
---|
In the Select Columns field, enter all required inputs in the {"distinct":Boolean Value, "columns":[{"columns":"string"}]} format. For example, you can specify the following values in this field: • {"distinct":true/false, "columns":[{"columns":"tablename.columnname"}]} • {"distinct":true/false, "columns":[{"columns":"alias.columnname"}]} |
If you do not select the column that has a primary key and do not select the Distinct check box, the column with the primary key is still returned in the output schema. |
If you chose Selection in the Where Clause Using list |
---|
a. Under the Where group, in the Join Clauses by list, select one of the following options: ◦ AND—All conditions specified under the Attributes group must return true. ◦ OR—Either of the conditions specified under the Attributes group must return true. b. Under the Attributes group, click Add, and do the following: a. In the Attribute list, select the column that you want to filter. b. In the Operator list, select the appropriate conditional operator. c. In the Value field, enter the value of the column for the filter. Click Add to add multiple attributes to the join clause. Click to delete attributes. If you add the same attributes and select AND in the Join Clauses by list, the attributes are joined by the OR operator. |
If you chose Query in the Where Clause Using list |
---|
In the Where Clause field, enter all required inputs in either of the following SQL Query formats: • table1.column1 = 'text value' AND table2.column2 >= 13 • alias1.column1 = 'text value' AND alias2.column2 >= 13 |