I have a problem similar to like this, emp_source table with column names empno,ename,sal,hiredate and I have emp_target table with column names empno,ename,sal,hiredate,min_hiredate.
empno, ename, sal, hiredate are directly mapped with source to target table. I wanted to populate min_hiredate. I want to pic a minimum hiredate from my source and populate into all columns into target table. For eg: if a min hiredate is 11/26/1999 then I want to populate all columns of target table for all rows.
Thanks for any help.
empno, ename, sal, hiredate are directly mapped with source to target table. I wanted to populate min_hiredate. I want to pic a minimum hiredate from my source and populate into all columns into target table. For eg: if a min hiredate is 11/26/1999 then I want to populate all columns of target table for all rows.
Thanks for any help.