InterviewSolution
Saved Bookmarks
| 1. |
What will be the output of the following queries on the basis of Employee table :EmpIDENameSalaryA001Bob5600A002JohnNulIA003Varchar5000(i) Select avg(Salary) from Employee;(ii) Select Salary+100 from Employee where Empld='A002'; |
|
Answer» (i) avg(Salary) 5300.0000 (ii) Salary+100 NULL |
|