ceil函数: 用于求大于数字的最小整数;例如:ceil(12.0) = 12; ceil(12.1) = 13; 只要小数点后面大于0,则进一位; 注:在sql server中,为Ceiling, 例如:select CEILING(23.1) 得23