You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

HI EXPERT

select TABLE_NAME, column_name,data_type from user_tab_cols;

select TABLE_NAME, column_name,data_type from RND_TABLES;

create table rnd_tables(TABLE_NAME varchar2(30),column_name varchar2(30));

insert into rnd_tables values('EMPLOYEES','id');

insert into rnd_tables values('EMPLOYEES','FNAME');

insert into rnd_tables values('EMPLOYEES','LNAME');

insert into rnd_tables values('EMPLOYEES','DOB');

insert into rnd_tables values('EMPLOYEES','email');

insert into rnd_tables values('EMPLOYEES','phone');

insert into rnd_tables values('EMPLOYEES','location');

insert into rnd_tables values('DEPT','DeptID');

insert into rnd_tables values('DEPT','DNAME');

insert into rnd_tables values('DEPT','DEPTCODE');

Tagged:

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!