andysmith1965
5 years agoStreaming Star
INT Conversion
HI
I'm getting an issue where an api response is returning a float for a user id, i.e
{"user_id" : 20715915.0}
I want to convert this to an INT by applying:
INT(20715915.0)
but this returns 20715916
instead of 20715915
Can anyone help me here?