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
{{ message }}
This repository was archived by the owner on Sep 26, 2024. It is now read-only.
id number pk
name varchar2(30)
age number
salary number
dept_id number
create table xdl_emp_2018(
id number constraint xdl_emp_2018_id_pk primary key,
name varchar2(30),
age number,
salary number,
dept_id number
);
insert into xdl_emp_2018 values(1,'ea',21,12345,1);
commit;
insert into xdl_emp_2018 values(2,'eb',22,8345,1);
insert into xdl_emp_2018 values(3,'ec',31,22345,1);
insert into xdl_emp_2018 values(4,'ed',41,72345,2);
insert into xdl_emp_2018 values(5,'ee',23,52345,2);
commit;
create table xdl_dept_2018(
id number constraint xdl_dept_2018_id_pk primary key,
name varchar2(30),
loc_addr varchar2(50)
);
insert into xdl_dept_2018 values(1,'test1','bj');
insert into xdl_dept_2018 values(2,'test2','nj');
commit;