SQL Exercise: List the employees, having six characters to their name
SQL employee Database: Exercise-17 with Solution
[An editor is available at the bottom of the page to write and execute the scripts.]
17. From the following table, write a SQL query to find the names of the employees whose length is six. Return employee name.
Sample table: employees
Pictorial Presentation:
Sample Solution:
SELECT emp_name
FROM employees
WHERE length(emp_name)=6;
Sample Output:
emp_name ---------- ADELYN MADDEN TUCKER ADNRES JULIUS MARKER (6 rows)
Explanation:
The said query in SQL that selects only the "emp_name" column from the 'employees' table where the length of the employee's name is equal to 6 characters.
Practice Online
Sample Database: employee
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous SQL Exercise: Employees whose salary is over 3000 after a 25% raise.
Next SQL Exercise: List the employees who joined in the month January.
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://w3resource.com/sql-exercises/employee-database-exercise/sql-employee-database-exercise-17.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics