Online Course Support

Which of the following statements are valid? (The column color is a string column, and both red and blue are integer columns.) Check all that apply.

Question 2
Which of the following statements are valid? (The column color is a string column, and both red and blue are integer columns.) Check all that apply.

1 point

SELECT color, MIN(red) FROM wax.crayons;

SELECT MIN(blue + red) FROM wax.crayons;

SELECT blue + MIN(red) FROM wax.crayons;

SELECT -20 + MIN(red) FROM wax.crayons;

SELECT MIN(-20 + red) FROM wax.crayons;

Similar Posts