Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers
How to use EXISTS operator OR
How to use subqueries with the EXISTS operators?
A subquery can be used with the EXISTS operator as "EXISTS (subquery)", which returns true if the subquery returns one or more rows. Example -
Select custID, CompanyName from Customers cu where EXISTS (Select OrderID from Orders o where o.custID = cu.custID)
Note:- When you use EXISTS, you don't really return data - instead, you return a simple TRUE/FLASE regarding the existence of data that meets the criteria established in the query that the EXISTS statement is operating against.
What are the privileges that can be granted on a table by a user to others in SQL Server?
How to find out column names and their datatypes in a given table using a query in SQL Server?
Describe Microsoft SQL Server 2000 ?
What is the limit of a row n SQL Server?
What are stored-procedures? And what are the advantages of using them.
Which wildcards are used for pattern matching in SQL Server?
What is the FOREIGN KEY in SQL Server?
If any user-created stored procedure has the same name as a system stored procedure, will the user-created stored procedure be executed?
What are some SQL aggregates and built-in functions?
What is the use of DESC in SQL Server Query?