Welcome to plsql4all.blogspot.com SQL, MYSQL, ORACLE, TERADATA, MONGODB, MARIADB, GREENPLUM, DB2, POSTGRESQL.

Wednesday 3 September 2014

CEIL function in MariaDB


The CEIL functions round the specified number up, and return the smallest number that is greater than or equal to the specified number.

Syntax is:-

CEIL (NUMBER)

Example is:-

SELECT CEIL(11.5);
--> 12

SELECT CEIL(11.1);
--> 12

SELECT CEIL(11);
--> 11

SELECT CEIL(-11.7);
--> -11

SELECT CEIL(-11.3);
--> -11

SELECT CEIL(-11);
--> -11


Read Also:-  CEIL function in MySql

No comments:

Post a Comment

Please provide your feedback in the comments section above. Please don't forget to follow.