Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can anyone please tell me how to use compareto operator in tmap.
please give the proper example.
thanks,
Rohit.
You need to compare the below way for sting type. what is your use case.
row1.column==null ? "xyz": row1.column
row1.column.equals("ABC") ? "xyz": row1.column
("ABC") .equals(row1.column)? "xyz": row1.column
in my case field is of bigdecimal data type
@rohit1804 ,was the below one is not helped you?