标签: sql postgresql
假设select语句返回
x,1,3,4,2,5,8,3 y,1,3,4,9,5,8,3
有没有一种方法可以将具有最大值的行投影到行中?
即
x,1,3,4,2,5,8,3,8 y,1,3,4,9,5,8,3,9
答案 0 :(得分:1)
您要寻找least()和greatest()吗?
least()
greatest()
select . . . , greatest(col1, col2, col3, col4, . . . ) from t;