A and B are tables. x is a column. Then What is difference
between A.x = B.x(+) and A.x = B.x ?

Answer Posted / surya

A.x = B.x(+) is outer join.
A.x = B.x is inner join of two tables

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to increment dates by 1 in oracle?

564


How does oracle handle read consistency?

680


How to rename an existing table?

615


How to revoke create session privilege from a user in oracle?

561


How to assign query results to variables?

594






How to store pictures on to the database?

532


> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?

1577


How to delete a user account in oracle?

554


What is a table index?

569


What are the advantages of oracle?

555


Explain the use of rows option in imp command.

607


What are the different oracle database objects?

592


How to count duplicated values in a column in oracle?

556


Difference between open_form and call_form in oracle.

684


What is a schema in oracle?

548