(Or Where Tblitems - Item - Category in ("Hygiene") )
(Or Where Tblitems - Item - Category in ("Hygiene") )
1. Display the Fname, Lname and Province of the customers from the
tblCustomer who are from Laguna.
2. Display the Fname and Lname of the customers from the tblCustomer
who Fname has letter ‘a’ on it.
3. Display the Item_Desc, Qty and Selling Price of all items in tblItems.
4. Display the Item_Desc and Qty of items in tblItems with the Category
“Hygiene”.
Select tblItems.Item_Desc, tblItems.Qty
FROM tblItems
Where tblItems.Item_Category = “Hygiene”;
[or
Where tblItems.Item_Category IN(“Hygiene”);]
5. Display the Item Description, Category and Selling Price of the items in
tblItems that has a Selling Price less than 50.
6. Display the Item Description, Quantity and Unit Price of the items in
tblItems that has a Unit Price greater than 75.
9. Display the Item Description, Quantity and Expiry Date of the items in
tblItems whose Supplier_Code is 1,3,5.
10. Sort the data from tblItems according its Expiry Date.