How to display those employees who joined the company before 15 of the month?

Oracle Apps Interview QuestionsCategory: SQLHow to display those employees who joined the company before 15 of the month?
Questions Master asked 10 years ago

How to display those employees who joined the company before 15 of the month?

1 Answers
Shailender Thallam Staff answered 10 years ago

SELECT ename,hiredate FROM emp WHERE TO_CHAR(hiredate,’DD’)<15;