SELECT SUM([BTL].dbo.OrderTable.Quantity) AS 'Totalquentity',Count(BTL.dbo.OrderTable.OrderID) as TotalOrder
FROM [BTL].dbo.OrderTable
JOIN [BTL].dbo.Products
ON [BTL].dbo.OrderTable.ProductID=[BTL].dbo.Products.ProductID
Left JOIN [BTL].dbo.Brand
ON [BTL].dbo.Products.BrandID=[BTL].dbo.Brand.BrandID
WHERE [BTL].dbo.OrderTable.EmployeeID='1'
Group by [BTL].dbo.Brand.BrandName,[BTL].dbo.Brand.BrandID"
I Want to get avg
Aqib_2 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.