I have a column in snowflake table which is varchar type and contains comma(,) seperated values in it.
I used split(mycolumn,',')
to change all the comma(,) seperated values into an array. Now, After using split
function i have an array of values.
How can i get maximum value from this array?
I Tried both max()
and greatest()
functions but no use.
Thanks in Advance.