Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Review
So you think you can count?
Rounding functions and more
18. Rounding up
Review and practice

Instruction

Awesome! Let's learn how to round in another way. Sometimes we want to round up. We can do it using the CEIL(number) function (or the CEILING(number) function which is an alias).

Exercise

Show the character's name and actual weight, followed by the weight rounded up as the weight_rounded_up column.

Stuck? Here's a hint!

Use this expression: CEIL(weight).