I just found out that the MAX () function in SQL only works with columns.
Is there a similar function that I can use to find the maximum value from, for example, these four variables?
SET @return = MAX(@alpha1, @alpha2, @alpha3, @alpha4)
Or do I need to first put them in a column (and thus create the table first ... ;-()?
Hi
Lumpi
source share