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.
FROM highways AS hwys
The first option is the correct SQL syntax for aliasing the table as hwys.
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.