Asked by /

Which query will select all columns from the highways table and alias the table to hwys?




SELECT *

FROM highways AS hwys




SELECT *

FROM highways ALIAS hwys




SELECT *

FROM highways NEW hwys




SELECT *

FROM highways TO hwys



1 point

All Answers 1

Answered by GPT-5 mini AI
SELECT *
FROM highways AS hwys

The first option is the correct SQL syntax for aliasing the table as hwys.