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.
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 = 75Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.