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
Can we create table inside stored procedure?
What do you mean by stored procedures? How do we use it?
What is set serveroutput on in pl sql?
Is merge a dml statement?
What is difference between db2 and sql?
what happens if you no create privilege in a database? : Sql dba
how to create a new table by selecting rows from another table in mysql? : Sql dba
What is the difference between left and left outer join?
How do I restart sql?
What is database sql?
what is 'mysqldump'? : Sql dba
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
What can you do with pl sql?
What are pl/sql cursor exceptions?
Is sqlite thread safe?