Online Course Support

Select the queries that will run without error in Hive. Check all that apply.

Question 6
Select the queries that will run without error in Hive. Check all that apply.

1 point

SELECT model FROM fly.planes ORDER BY type;

SELECT model, year FROM fly.planes ORDER BY 2019 – year;

SELECT * FROM fly.planes ORDER BY type;

SELECT model, type FROM fly.planes ORDER BY type;

SELECT model, 2019 – year AS age_in_2019 FROM fly.planes ORDER BY year;

SELECT model, 2019 – year AS age_in_2019 FROM fly.planes ORDER BY age_in_2019;

Similar Posts