Whatz the main diff between Subquery and a Join
Answers were Sorted based on User's Feedback
Answer / a.n.v.v.siva kumar
The main difference between join and sub query is :
join is used to retrieve data from two different tables
where as in sub query we can retreive data from one table
using the result of the where condition on another table.
| Is This Answer Correct ? | 8 Yes | 8 No |
Answer / ramakrishna alla
Above one is exact answer that says sub query is used to get data based on unknown condition (example: select the employee's salary where employee salary greater than clerk) here first we find out clerk salary and then based on his salary we find employee's salary according to above query)
join is used to get the data from atleast 2 tables.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gomolemo kasale
a sub query is a query nested within another query while
join select rows from multiple table
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suryakiran
The main usage of subqueries is to retrieve a single record
from that same table or another table.
And also we can use subqueries to retrieve multiple
records,for this we have to use multiple sub queies,instead
of this its better to use joins based on a condition.
We can perform all operations for joins by using subqueries
but it is very complicated.
| Is This Answer Correct ? | 0 Yes | 1 No |
Is it possible to join two tables, that are in two different users (e.g. SCOTT and HR etc.),but im same database (e.g. ORCL)? If yes, then how it is possible? Explain with step by step procedure.
What are the differences between date and timestamp in oracle?
What do you mean by a deadlock?
What are the differences between lov and list item?
What do you mean by redo log file mirroring?
consider some table with 4 r 5 columns in that 1 col is DATE type. The data is like that,For each date in that col some 3 fields r there but all the records r having different data. Now i want to display all the columns by performing grouping on the date field ( as SELECTION Operator(*) cannot be used with group function having only one "group by clause". how to do this? can any one help me in finding out the solution plss?
how to create a new database in oracle?
What is the difference between a primary key & a unique key?
Explain an integrity constrains?
What is E-R diagram ?
2 Answers CGI, Keane India Ltd,
what is the syntax of update command?
Please explain drop constraint oracle?