Link to home
Start Free TrialLog in
Avatar of anumoses
anumosesFlag for United States of America

asked on

updating oracle table

select rh.rec_hdr_id hdr_id,
         rd.rec_hdr_id dtl_id,
                   rh.po_number,
         rh.date_received,
         rh.create_time hdr_time,
         rd.create_time dtl_time,
         rh.audit_key,
                   rd.rec_det_id,
         rd.item_code
  from receiver_header rh,
          receiver_detail rd
 where rh.rec_hdr_id = rd.rec_hdr_id      
----------------------------
I need to update the create_time of the receiver_detail with create_time of the receiver_header table.
ASKER CERTIFIED SOLUTION
Avatar of Sean Stuber
Sean Stuber

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of anumoses

ASKER

thanks
Avatar of Sean Stuber
Sean Stuber

there were 2 identical solutions posted within seconds of each other,  a split is appropriate
thanks