-
What will be the result of the query given below?
SELECT Student_id,
‘ACTIVE’ STATUS,
Student_id * 3.14 Student_pi,
UPPER (LName) Last_Name
FROM Student;
-
- Error
- Student_id, ACTIVE, Student_id * 314, UPPER(LName)
- Student_id, Status, Student_pi, Last_Name
- All of above
- None of these
Correct Option: C
Status, Student_pi, Last_Name are “column aliases”.