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 compare

  • Second text column to compare column(string)*: Select the second column to compare

Example

Input

Text - Compare text columns input

Configuration

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

Output

Text - Compare text columns output

The comparison is case-sensitive

Last updated

Was this helpful?