Is there any function exists in FEM equivalent to oracle function decode.
DECODE(supplying_code, 1, 'Oracle',
2, 'FME',
3, 'ArcGIS',
'GIS') result
Is there any function exists in FEM equivalent to oracle function decode.
DECODE(supplying_code, 1, 'Oracle',
2, 'FME',
3, 'ArcGIS',
'GIS') result
The math operator maybe :
? : (x?y:z)
I would say the AttributeValueMapper is the closest equivalent, although you could also get the same results in e.g. an AttributeCreator or AttributeManager using a conditional value.