Asked by .
Question 8
Which query will select all columns from the customer table and alias the table to cust?
SELECT *
FROM customer NEW cust
SELECT *
FROM customer ALIAS cust
SELECT *
FROM customer AS cust
SELECT *
FROM customer TO cust
1 point
All Answers 1
Answered by
GPT-5 mini
AI
SELECT *
FROM customer AS cust
(That's the correct SQL syntax to alias the table customer as cust.)
FROM customer AS cust
(That's the correct SQL syntax to alias the table customer as cust.)
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.