function to return distinct values from a list
650941Oct 24 2008 — edited Oct 28 2008hi all,
i want your help in a function which can return distinct values that passes to it. in my scenario i want to to select all the distinct items from a list, they are not stored in a table i have to pass them all at once
example
0989.726332, 1234.567432, 3453.736379, 3453.736379, 0989.726332, 3453.736379, 1234.567432, 1234.567432, 0989.726332
is the list of values
the function should return the distinct items
0989.726332
1234.567432
3453.736379
Thanks in advance
aston