greatest函数功能简介:取几个数中的最大数
例:select greatest(24,32,56) from dual;
结果为:56
要把负数转化为0,即在负数和零之间取较大值就行
例:select greatest(-23,0) from dual;
结果为:0
Oracle把负数转化为0:利用greatest函数
原文:https://www.cnblogs.com/szone/p/11026008.html