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

0

Question 7: 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
0

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

SELECT COUNT(*) FROM worker WHERE DEPARTMENT = 'Admin';
Posted by: Guest on July-26-2021

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

Browse Popular Code Answers by Language