w3resource

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


[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'.

Go to:


PREV : List the employees, having six characters to their name.
NEXT : Employees and managers name separated by a string.


Practice Online



Sample Database: employee

employee database structure

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

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.