w3resource

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:

SQL exercises on employee Database: List the name of the employees, those having six characters to their name

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

employee database structure

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.



Follow us on Facebook and Twitter for latest update.