Consider The Relationp Pre Langsql Cssfilehk1style Instructor #29
Consider the relation:</p> <pre><code class="language-sql"> Instructor (Id, Salary); </code></pre> <p>Which of the following query retrieves the total salary of all instructors after receiving a bonus of 200/-?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL MCQs on Select Statement - SQL Select Statement - Quiz No.1.
Consider the relation:
Instructor (Id, Salary);
Which of the following query retrieves the total salary of all instructors after receiving a bonus of 200/-?
Select Salary From instructor
Select Salary+200 From instructor+200
Select Salary+200 From instructor
Select Salary From instructor+200