Instruction
Well done! The final challenge is just ahead...
Exercise
For players with ID of 1 or 5, show:
- First and last name joined by a single space as the
player_namecolumn. - Their characters'
level. - Height rounded to one decimal place as the
rounded_heightcolumn. - Account balance rounded down to the nearest integer as the
account_balancecolumn.
Stuck? Here's a hint!
You will need to use the following expression in order to round the height:
ROUND(height::numeric, 1)



