Compare text columns
This step involves comparing two text columns and generating a new column that stores a boolean indicating the result of that comparison.
Step parameters
New column name(for the comparison result)
string*: the new column to be created for returns true if the string values are equal, and false otherwise.First text column to compare
column(string)*: Select the first column to compareSecond text column to compare
column(string)*: Select the second column to compare
Example
Input

Configuration
{
"new_column_name": "compare_results",
"str_col_1": "compare_text1",
"str_col_2": "compare_text2"
}
Output

Last updated
Was this helpful?