-
Is there any error in executing the following query?
SELECT Student_id, ‘ACTIVE’,
Student_id * 3.145,
UPPER (LastName)
FROM Student;
-
- NO
- Depends on condition
- Yes
- Undefined behaviour
- None of these
Correct Option: A
“SELECT clause” includes the following: Literals like ‘ACTIVE’, Expressions like Student_id*314, Built_in functions like UPPER ().