-
What will be the result of the query given below?
SELECT Person_id,
‘ACTIVE’ AS STATUS,
Person_id * 3.14 AS Person_pi,
UPPER (LName) AS Last_Name
FROM Person;
-
- Error
- Person_id, ACTIVE, Person_id * 314, UPPER(LName)
- Person_id, Status, Person_pi, Last_Name
- All of above
- None of these
Correct Option: C
Status, Person_pi, Last_Name are “column aliases” and Keyword “AS” is optional.