I wanted to find out the number of 0's at end of integer. Eg for 2020 it should count 1 for 2000 it should count 3 for 3010000 it should count 4
I have no idea to do it without counting all the zeros and not just the ending ones!
someone please help :)
You can do it as general string manipulation:
We convert the column to string, strip of the zeroes, count take that away from the total length, giving you the amount of stripped zeroes.
Edit: I messed up my first answer, this one should in fact be correct