Answers for "Write an SQL query to print details of the Workers who have joined in Feb’2014"

0

Write an SQL query to print details of the Workers who have joined in Feb’2014

Select * from Worker where year(JOINING_DATE) = 2014 and month(JOINING_DATE) = 2;
Posted by: Guest on July-26-2021

Code answers related to "Write an SQL query to print details of the Workers who have joined in Feb’2014"

Browse Popular Code Answers by Language