Online Course Support

The result of DESCRIBE fun.games; gives this result:

Question 5
The result of DESCRIBE fun.games; gives this result:

name type comment
id int
name string
inventor string
year string
min_age tinyint
min_players tinyint
max_players tinyint
list_price decimal(5,2)
Assume you are using Impala, which does not implicitly cast data types. Which of the following are valid to use in a SELECT list for this table?

1 point

  • min_players-min_age
  • min_players, list_price
  • abs(name)
  • name + 10
  • ceil(list_price + 0.08*list_price)
  • inventor

Similar Posts