SQL Queries and Answers
SQL Queries and Answers
1) Get all the Customers and their Full Address details who placed orders more
than 25 in Quantity
Select C.CustomerID, C.CustomerName, C.ContactName, C.Address, C.City,
C.Postalcode, C.Country, O.OrderID
from Customers C, Orders O, Orderdetails OD
where C.CustomerID = O.CustomerID
and O.OrderID = OD.OrderID and OD.quantity > 25;
2) Get Top 5 costliest Product Details and their Supplier Names and Address along
with Phone number
Select top 5 (Price),ProductID, ProductName, SupplierName, Address, Phone from
Products P
inner join Suppliers S
on P.SupplierID = S.SupplierID;
3) Get me the Maximum and Minimum Product details in a single Query
Ans: Select ProductID, Max(price), Min(Price) from Products group by ProductID;
4) Get me the Total Orders list along with their Quantity for the Orders placed
between 09/01/1996 and 01/31/1997
Order Details - OrderDetailID, OrderID, ProductID, Quantity
Orders - OrderID, CustomerID, EmployeeID, OrderDate, ShipperID
5) Give me the category descripton of all products which cost less than 10$
Select P.productID, P.ProductName, C.Description
From Products P inner join Categories C on P.CategoryID = C.CategoryID
And P.Price < 10
6) Get the Employee details who sold more products(In quantity). I want the
employee Names as "LastName-Firstname"
Employees - EmployeeID, LastName, FirstName, BirthDate, Photo, Notes
Order Details - OrderDetailID, OrderID, ProductID, Quantity
Orders - OrderID, CustomerID, EmployeeID, OrderDate, ShipperID
7) Give me the Phone number of the shipper who shipped more Quantity in the
month of 1996 December
8) Get me Top 5 products which are ordered the most and also Top 5 products
whose total price is more in descending order