w3resource

SQL Exercise: List the employees who joined in the month January

SQL employee Database: Exercise-18 with Solution

[An editor is available at the bottom of the page to write and execute the scripts.]

18. From the following table, write a SQL query to find out which employees joined in the month of January. Return complete information about the employees.

Sample table: employees


Pictorial Presentation:

SQL exercises on employee Database: List the employees who joined in the month January

Sample Solution:

SELECT *
FROM employees
WHERE to_char(hire_date, 'mon')='jan';

Sample Output:

 emp_id | emp_name | job_name | manager_id | hire_date  | salary  | commission | dep_id
--------+----------+----------+------------+------------+---------+------------+--------
  69324 | MARKER   | CLERK    |      67832 | 1992-01-23 | 1400.00 |            |   1001
(1 row)

Explanation:

The said query in SQL that selects all columns and rows from the 'employees' table where the month of the hire date is January.

The "to_char" function converts the "hire_date" column to a string representation of the month using the 'mon' format. The comparison operator '=' is then used to compare this string to the string 'jan'.

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: List the employees, having six characters to their name.
Next SQL Exercise: Employees and managers name separated by a string.

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.