Pandas SQL Query: Display the name, salary and department number for those employees who holds a letter n as a 3rd character in their first name
19. Employees with 'n' as 3rd Char in First Name
Write a Pandas program to display the first, last name, salary and department number for those employees who holds a letter n as a 3rd character in their first name.
EMPLOYEES.csv
Sample Solution :
Python Code :
Sample Output:
First name Last name Salary Department ID Nancy Greenberg 12000 100.0 Daniel Faviet 9000 100.0 Den Raphaely 11000 30.0 Renske Ladwig 3600 50.0 Randall Matos 2600 50.0 Nanette Cambrault 7500 80.0 Janette King 10000 80.0 Lindsey Smith 8000 80.0 Danielle Greene 9500 80.0 Sundar Ande 6400 80.0 Sundita Kumar 6100 80.0 Jonathon Taylor 8600 80.0 Winston Taylor 3200 50.0 Nandita Sarchand 4200 50.0 Jennifer Dilly 3600 50.0 Randall Perkins 2500 50.0 Vance Jones 2800 50.0 Donald OConnell 2600 50.0 Jennifer Whalen 4400 10.0
Equivalent SQL Syntax:
SELECT first_name,last_name, department_id FROM employees WHERE first_name LIKE '__n%';
Click to view the table contain:
For more Practice: Solve these Related Problems:
- Write a Pandas program to display the first name, last name, salary, and department number for employees whose first name has the letter 'n' as its third character using regex.
- Write a Pandas program to filter employees by checking that the third character of their first name is 'n', ignoring case.
- Write a Pandas program to display the specified fields for employees matching the third character condition and then sort the results by last name.
- Write a Pandas program to display the required employee fields where the third character in the first name is 'n' and also display the row index.
Python Code Editor:
Structure of HR database :

Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Pandas program to display the first name, last name, salary and department number for those employees whose managers are hold the ID 120, 103 or 145.
Next: Write a Pandas program to display the first name, job id, salary and department for those employees not working in the departments 50,30 and 80.
What is the difficulty level of this exercise?