What are sub-queries? Give example? In which case
sub-queries are not feasible?
Answers were Sorted based on User's Feedback
Answer / bernatshaw
Sub-query means a Query within a Query.
This is the Example:
Select Employee_Id, Employee_name From Employees Where
Employee_Id IN (Select Mgr_Id from Manager)
Is This Answer Correct ? | 12 Yes | 2 No |
Answer / rajendra
Sub query mean query within query ,but when you use sub
query on larg amount data that time it is not feasible
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / akhil
text and image datatypes are not allowed in
subqueries.Subqueries cannot manipulate their results
internally, that is, a subquery cannot include the order by
clause, the compute clause, or the into keyword.
Correlated (repeating) subqueries are not allowed in the
select clause of an updatable cursor defined by declare cursor.
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / amit kumar
A subquery is simply a SELECT query within a SELECT query.
example:-
SELECT City, Salary, (SELECT AVG(Salary) FROM Employee)
AS AvgSalary FROM Employee;
Is This Answer Correct ? | 1 Yes | 4 No |
Why we use trigger in sql server with example?
Does full backup break log chain?
Explain sql server authentication modes?
what are the advanced features in sql 2008?
What is a document index?
How to perfor If the table running time is taking 2hours and table is having 10 rows in it?
How to list all user defined functions in the current database?
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
What is a cube? : sql server analysis services, ssas
what is an extended stored procedure? Can you instantiate a com object by using t-sql? : Sql server database administration
write coding for importing sql data into a word excel...
What is a non-clustered index?