0% found this document useful (0 votes)
6 views4 pages

TABLEEEEE

Table

Uploaded by

Geramier Apostol
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views4 pages

TABLEEEEE

Table

Uploaded by

Geramier Apostol
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

CREATE TABLE Items (

ItemNumber INT PRIMARY KEY,

ItemDescription VARCHAR2(100) NOT NULL,

ItemPrice NUMBER(10, 2) CHECK (ItemPrice >= 0),

ItemQuantity INT CHECK (ItemQuantity >= 0),

ItemCategory VARCHAR2(50) CHECK (ItemCategory IN ('Canned Goods',


'Beverages', 'Snacks', 'Noodles', 'Frozen Goods'))

);

-- Inserting 50 items, 10 for each category

INSERT INTO Items (ItemNumber, ItemDescription, ItemPrice, ItemQuantity,


ItemCategory) VALUES

(1, 'Canned Tuna', 25.50, 50, 'Canned Goods'),

(2, 'Corned Beef', 35.75, 30, 'Canned Goods'),

(3, 'Sardines', 18.00, 70, 'Canned Goods'),

(4, 'Canned Pork', 40.00, 20, 'Canned Goods'),

(5, 'Canned Beans', 22.50, 50, 'Canned Goods'),

(6, 'Canned Peaches', 45.00, 15, 'Canned Goods'),

(7, 'Canned Pineapple', 30.00, 25, 'Canned Goods'),

(8, 'Canned Soup', 38.00, 40, 'Canned Goods'),

(9, 'Canned Mushrooms', 48.50, 20, 'Canned Goods'),

(10, 'Canned Tomatoes', 32.00, 10, 'Canned Goods'),

(11, 'Orange Juice', 45.00, 40, 'Beverages'),

(12, 'Apple Juice', 55.00, 30, 'Beverages'),

(13, 'Mango Juice', 60.00, 20, 'Beverages'),

(14, 'Iced Tea', 35.00, 50, 'Beverages'),


(15, 'Cola', 25.00, 70, 'Beverages'),

(16, 'Lemonade', 28.00, 60, 'Beverages'),

(17, 'Coffee', 150.00, 10, 'Beverages'),

(18, 'Milk', 80.00, 25, 'Beverages'),

(19, 'Water', 10.00, 100, 'Beverages'),

(20, 'Chocolate Milk', 90.00, 35, 'Beverages'),

(21, 'Potato Chips', 25.00, 100, 'Snacks'),

(22, 'Chocolate Bar', 50.00, 40, 'Snacks'),

(23, 'Granola Bar', 35.00, 60, 'Snacks'),

(24, 'Peanuts', 20.00, 90, 'Snacks'),

(25, 'Popcorn', 15.00, 50, 'Snacks'),

(26, 'Cookies', 45.00, 40, 'Snacks'),

(27, 'Pretzels', 30.00, 70, 'Snacks'),

(28, 'Nachos', 28.00, 60, 'Snacks'),

(29, 'Candy', 12.00, 200, 'Snacks'),

(30, 'Gummy Bears', 10.00, 150, 'Snacks'),

(31, 'Instant Noodles', 12.00, 200, 'Noodles'),

(32, 'Ramen', 25.00, 100, 'Noodles'),

(33, 'Pasta', 35.00, 60, 'Noodles'),

(34, 'Soba Noodles', 40.00, 80, 'Noodles'),

(35, 'Udon Noodles', 45.00, 50, 'Noodles'),

(36, 'Rice Noodles', 30.00, 120, 'Noodles'),

(37, 'Cup Noodles', 20.00, 180, 'Noodles'),

(38, 'Egg Noodles', 38.00, 70, 'Noodles'),

(39, 'Mung Bean Noodles', 22.00, 90, 'Noodles'),


(40, 'Glass Noodles', 28.00, 50, 'Noodles'),

(41, 'Frozen Pizza', 120.00, 30, 'Frozen Goods'),

(42, 'Frozen Chicken Nuggets', 150.00, 25, 'Frozen Goods'),

(43, 'Frozen Fries', 80.00, 50, 'Frozen Goods'),

(44, 'Frozen Fish Fillet', 200.00, 20, 'Frozen Goods'),

(45, 'Frozen Vegetables', 90.00, 40, 'Frozen Goods'),

(46, 'Frozen Dumplings', 125.00, 35, 'Frozen Goods'),

(47, 'Frozen Meatballs', 130.00, 45, 'Frozen Goods'),

(48, 'Frozen Ice Cream', 250.00, 15, 'Frozen Goods'),

(49, 'Frozen Bacon', 180.00, 20, 'Frozen Goods'),

(50, 'Frozen Sausages', 160.00, 30, 'Frozen Goods');

-- 1. Update prices lower than 500 and add 10%

UPDATE Items

SET ItemPrice = ItemPrice * 1.10

WHERE ItemPrice < 500;

-- 2. Update quantity if it's considered critical stock per category


UPDATE Items

SET ItemQuantity = ItemQuantity + (ItemQuantity / 2)

WHERE (ItemCategory = 'Canned Goods' AND ItemQuantity < 300)

OR (ItemCategory = 'Beverages' AND ItemQuantity < 200)

OR (ItemCategory = 'Snacks' AND ItemQuantity < 100)

OR (ItemCategory = 'Noodles' AND ItemQuantity < 50)

OR (ItemCategory = 'Frozen Goods' AND ItemQuantity < 500);

-- 3. Search for items categorized as Frozen Goods and update them as N/A

UPDATE Items

SET ItemDescription = 'N/A'

WHERE ItemCategory = 'Frozen Goods';

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy