sonal.totla Answered 3 Years ago through
Quizzes
If a where and having clause both are used in a query for example i have taken a query from northwind database
USE Northwind;
SELECT C.CustomerID, COUNT(O.OrderID) AS NumOrders
FROM dbo.Customers AS C
LEFT OUTER JOIN dbo.Or...