I have a dataset that contains integer of type “Long”. I need to analyse that dataset by doing some arithmetic operations on it. What are the possible ways to do that?
I have tried casting to FLOAT but then I can't use some operations like bitwise AND etc on that data type.
As an example, here is the value of one field
18446744073709551615
Thanks