Viewing post 1 (of 1 total)
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...
November 20, 2013 at 7:37 am
#1667815