What are joins..how many types of joins are there?

Answer Posted / prabhat shukla

Basically there are three types of join

1.Inner join
2.Outer join
3.self join

and there are two types of join based on condition.

1.equi-join(if we use equal operator while joining tables)
2.Non-equi-join( if we use other than equal operator while
joining tables.(this on is rarely used.)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is Java Pool in Oracle?

604


How remove data files before opening a database?

566


How to drop a stored procedure in oracle?

592


Explain the blob datatype?

620


What is an external table?

588






There are n numbers of flatfile of exactly same format are placed in a folder.Can we load these flatfile's data one by one to a single relational table by a single session??

1614


How can you merge two tables in oracle?

569


What is merge statement used for?

570


Where are the settings stored for each instance in oracle?

627


How do I connect to oracle database?

537


How to do clean up if create database failed?

576


How data locks are respected in oracle?

575


How to count duplicated values in a column in oracle?

554


src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));

1181


what is the scripts in data base?

1603