Hi @tejashriw155148,
you must do a split after query selection to get two branches (one for INT and another for STRING).
After that you may convert to preferred type in Enrichment nodes in needed (per branch.)
If your data have only two characters you may adapt query in split:
- To identify numbers something like: first character in (1,2,3,4,5,6,7,8,9) and second character in (1,2,3,4,5,6,7,8,9)
- To identify non-numbers just enable Complement of point 1 to get all non-numbers
Generally, with provided data all input values are string. Then you need to separate it with split (above) and do conversion of numbers to integer.
Regards,
Milan