📝 Question
#1043
The query given below will not give an error. Which one of the following has to be replaced to get the desired output? SELECT ID, name, dept name, salary * 1.1 WHERE instructor;
✓
Correct Answer
C. Where
💡
Explanation
Where selects the rows on a particular condition. From gives the relation which involves the operation. Since Instructor is a relation it has to have from clause.
⌨️ Press
A
B
C
D
to select