Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: GREATEST and LEAST function

    With Query1 As

    ( Select * from (values (1, 2), (4, 5), (2, Null), (2, 7), (1, 8)) As T(x,y))

    select MAX(x) Greatest, Min(x) Least From...

Viewing post 1 (of 1 total)