ceil(): smallest integer which is higher than the input value

select ceil(5.94) => 6
select ceil(5.24) => 6
select ceil(-5.24)=> -5
select ceil(-5.54) => -5
We can use MySQL ceil() function to get the smallest integer which is higher than the input value.

Same way we can use the floor function to get the highest integer which is lower than the input value.

We can use ceil function to our student table where we will calculate the average mark of the students.
SELECT avg(mark) as avg FROM `student` 
Output = 74.6571 Now we can use ceil command like this.
SELECT ceil(avg(mark)) as avg FROM `student`
Output = 75

SQL Math References Floor function to get Maximum integer value Average value Query
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com

    Post your comments , suggestion , error , requirements etc here





    SQL Video Tutorials










    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer