SQL Exercise: List the employees, having six characters to their name
[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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics