Mis Masrur

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

1. What it the user wants to see the customer email,customer and customer ID of Pearl Isabell??

Answer: Select Customer_Email_Address From Customer Where Customer_Name =”Pearl


Isabell”

Result:
2.What if the user wants to see distinct Sales discount??
Answer: Select Distinct Sales discount From Sales.

Result:
3.What if the user wants to see Select Customer_ID, Sales_Discount, Return_Status where return
status is yes?

Answer: Select Customer_ID, Sales_Discount, Return_Status From Sales Where Return_Status = YES

Result:
4.What if the user wants to Suppliers details when the price is more then 159?
Answer: Select Supplier From Inventory Where Price> 159

Result:
5. What if the user wants to know the email address of a one specific sales employee?
Answer: Select Employee_Email From Sales_Employee Where Employee name = “Adela”

Result:
6. What if the user wants to know Transaction numbers when the sales amount is more the
160000 and discount is less than 20.
Answer: Select Transcation_Number From Sales Where Sales_Amount >160000 And
Sales_Discount <=20.

Result:

You might also like