How to write a filter condition to get all the records of employees hired between any two given dates.

Showing Answers 1 - 17 of 17 Answers

satyaneerumalla

  • Sep 7th, 2006
 

IFF(DATE_DIFF(HIREDATE,DATE1,DATEFORMAT)>0) AND IFF(DATE_DIFF(DATE2,HIREDATE,DATEFORMAT)>0)

EX: DATEFORMAT 'DD',  'MM' etc.

  Was this answer useful?  Yes

swati

  • Sep 18th, 2006
 

emp.hiredate >to_date('01-Jan-1981','DD-Mon-YYYY') andemp.hiredate < to_date('01-May-1981','DD-Mon-YYYY')

  Was this answer useful?  Yes

crishnathk

  • Dec 12th, 2006
 

thq for ur ans.....

i'm having dbt with filter transformation after completing my filter trans if i'm repeating the same trans by changing the condition it is not showing any result wat ever the filteration i have done earlier it is repeating.

cud u plz solve this............

  Was this answer useful?  Yes

ms kumar

  • Sep 8th, 2014
 

plz generate and execute the target table for every mapping by dropping the the table

  Was this answer useful?  Yes

naveenkumar

  • Oct 14th, 2014
 

execute the target table for mapping to table

  Was this answer useful?  Yes

Nagas

  • Nov 24th, 2014
 

Use the SQL condition "Between and AND" as a filter condition in the mapping

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions