sql实现一行中最大值
sql实现一行中最大值现有一组数据如下greatest函数select name,greatest(x,y,z)max from h3;提示:一行最小值可以用leastcase when写法select name,case when (case when x > y then x else y end) > z then (case when x > y then...