Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Basic SELECT statement: Get monthly salary of all employees

MySQL Basic Select Statement: Exercise-19 with Solution

Write a query to get monthly salary (round 2 decimal places) of all employees.

Sample table: employees


Code:

SELECT first_name, last_name, round(salary/12,2) as 'Monthly Salary' 
   FROM employees;

Pictorial Presentation of the above query


Result :


MySQL Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a query to select first 10 records from a table.
Next: MySQL Restricting and Sorting data

What is the difficulty level of this exercise?