SQL Exercise: Employee names and salaries are increased by 15% in $
SQL employee Database: Exercise-4 with Solution
[An editor is available at the bottom of the page to write and execute the scripts.]
4. From the following table, write a SQL query to list the employees’ name, increased their salary by 15%, and expressed as number of Dollars.
Sample table: employees
Pictorial Presentation:
Sample Solution:
SELECT emp_name,
to_char(1.15*salary,'$99,999') AS "Salary"
FROM employees;
Sample Output:
emp_name | Salary ----------+---------- KAYLING | $ 6,900 BLAZE | $ 3,163 CLARE | $ 2,933 JONAS | $ 3,401 SCARLET | $ 3,565 FRANK | $ 3,565 SANDRINE | $ 1,035 ADELYN | $ 1,955 WADE | $ 1,553 MADDEN | $ 1,553 TUCKER | $ 1,840 ADNRES | $ 1,380 JULIUS | $ 1,208 MARKER | $ 1,610 (14 rows)
Explanation:
The provided query in SQL that retrieves names of all the employees, and their corresponding salaries, adjusted by a 15% increase aliased as "Salary". The AS keyword is used to assign the name "Salary" to the newly created column.
Practice Online
Sample Database: employee
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous SQL Exercise: Display the unique designations for the employees.
Next SQL Exercise: Produce the output of employees name and job name.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://www.w3resource.com/sql-exercises/employee-database-exercise/sql-employee-database-exercise-4.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics