explain different types of jions with examples briefly?
Answers were Sorted based on User's Feedback
Answer / hari
Inner join
outer join--left outer join ,right outer join , full outer
join
Cross Join
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / soni
Inner join: This type of join displays matched rows from
tables.
this is based on equality condition ,so also called
equijoin.
exp- select empid,d.deptid,deptname,empname,location,salary
from emp e inner join dept d on e.deptid=d.deptid
Cross join: this is not based on any condition. It results
every row of one table matching with every row of another
table.
exp- select * from emp cross join dept
Self join: This ype of join joins a table to itself.
outer join:
Three types -
a.left outer join: It reults mathed rows from both tables
as well as all unmatched rows from left table.
exp- select empid,d.deptid,deptname,name,location,salary
from emp e left outer join dept d
on e.emp=d.dept
it displays all data from emp table .
right Outer join:It reults mathed rows from both tables as
well as all unmatched rows from right table.
exp- select empid,d.deptid,deptname,name,location,salary
from emp e right outer join dept d
on e.emp=d.dept
it displays all data from dept table .
Full Outer Join: This type of join results all matched
rows from both tables as well as umatched rows from both
tables.
exp.-select empid,d.deptid,deptname,name,location,salary
from emp e full outer join dept d
on emp e=d.dept d
It displays all matched and unmatched rows from both emp
and dept tables.
| Is This Answer Correct ? | 5 Yes | 3 No |
1.Describe way(s) to tune the SQL table in order to optimize performance. 2. Explain SQL Injection and how can you prevent them?
Display a roll having miminum marks in two subjects?
What is transact-sql language?
What is DAC? what is the use of it?
Explain what are partitioned views and distributed partitioned views?
Explain about thread and memory management process of SQL?
What are indexes? When do you need to create Indexes?
4 Answers CarrizalSoft Technologies, HP,
What samples and sample databases are provided by microsoft?
How to loop through the result set with @@fetch_status?
if you encounter this kind of an error message, what you need to look into to solve this problem? : Sql server database administration
What is the security model used in sql server 2005?
Where are stored procedures in sql server?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)