Write the formula to count the number of persons whose Total Salary is less than 50000.
Answers
Answered by
0
- First of all let the salary be a variable x
- After that define x < 50000
- You will get the no. of person
Answered by
0
Answer:
Explanation:
We can use SQL query to filter out the salary from a given set of records
SELECT Emp_Name, E_id
FROM Employee
WHERE salary >= 10000
This statement uses a select command which has a where condition
The from specifies the source of the data
Where gives the condition
And select gets all the data
See more:
https://brainly.in/question/41281907
#SPJ2
Similar questions