Can we relate two different tables from two different users
in ORACLE,PL/SQL?
Answer Posted / shilpa.oracle
Yes, we can relate tables of different schemas provided we
should have privileges on that table
create table test_emp
(empno number(5),deptno number(5),constraint dept_ref
foreign key (deptno) references schema.dept(deptno))
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is keys and its types?
What is the command used to fetch the first 5 characters of a string?
What is cold data?
What are the two different parts of the pl/sql packages?
what is timestamp in mysql? : Sql dba
How to rename a table?
How do I know if I have sql express or standard?
Can a table contain multiple primary key’s?
Is sql a oracle?
what are the advantages of using stored procedures? : Sql dba
Does truncate release storage space?
how to drop an existing table in mysql? : Sql dba
How to add new employee details in an employee_details table with the following details
What is an example of translating a date into julian format?
What is count * in sql?