You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select * into emp_details.emp_rec from employees where employee_id=179;
dbms_output.put_line(emp_details.emp_rec.first_name||' studied from '||emp_details.uni||' with major '||emp_details.major ||' having gpa '||emp_details.gpa);
insert into emp_edu values(emp_details.emp_rec.employee_id,emp_details.emp_rec.first_name,emp_details.major,emp_details.uni,emp_details.gpa);