MySQL Exercises, Practice, Solution
MySQL Restricting and Sorting data: [11 exercises with solution]
1. Write a query to display the name (first_name, last_name) and salary for all employees whose salary is not in the range $10,000 through $15,000. Go to the editor
Sample table: employees
2. Write a query to display the name (first_name, last_name) and department ID of all employees in departments 30 or 100 in ascending order. Go to the editor
Sample table: employees
3. Write a query to display the name (first_name, last_name) and salary for all employees whose salary is not in the range $10,000 through $15,000 and are in department 30 or 100. Go to the editor
Sample table: employees
4. Write a query to display the name (first_name, last_name) and hire date for all employees who were hired in 1987. Go to the editor
Sample table: employees
5. Write a query to display the first_name of all employees who have both "b" and "c" in their first name. Go to the editor
Sample table: employees
6. Write a query to display the last name, job, and salary for all employees whose job is that of a Programmer or a Shipping Clerk, and whose salary is not equal to $4,500, $10,000, or $15,000. Go to the editor
Sample table: employees
7. Write a query to display the last name of employees whose names have exactly 6 characters. Go to the editor
Sample table: employees
8. Write a query to display the last name of employees having 'e' as the third character. Go to the editor
Sample table: employees
9. Write a query to display the jobs/designations available in the employees table.Go to the editor
Sample table: employees
10. Write a query to display the name (first_name, last_name), salary and PF (15% of salary) of all employees. Go to the editor
Sample table: employees
11. Write a query to select all record from employees where last name in 'BLAKE', 'SCOTT', 'KING' and 'FORD'. Go to the editor
Sample table: employees
More to Come !
Structure of 'hr' database:

MySQL Code Editor:
Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises