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).



