Transaction Quantity to Primary Quantity

本文提供了一个使用PL/SQL进行单位换算的例子,展示了如何将交易数量从交易单位(如件数PC)转换到主单位的流程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

--Convert the transaction quantity to Primary UOM's quantity
DECLARE
  L_PRIMARY_QTY NUMBER;
BEGIN

  PO_UOM_S.UOM_CONVERT(100 --Transaction Quantity
                      ,'PC' --Transaction Uom
                      ,403769 --Inventory_item_id
                      ,'PC' --Primary Uom Code
                      ,L_PRIMARY_QTY);

  DBMS_OUTPUT.PUT_LINE(L_PRIMARY_QTY);

END;

根据这些信息提供创建数据库和创建数据表的Oracle代码:CUSTOMER: stores customer information such as name, address, phone number, email, and loyalty program status. This table has the primary key of CustomerID. • ORDER: stores information about each order such as the order date, order status, and total cost. This table has a primary key of OrderID and a foreign key to the Customer table. • ORDER_DETAILS: stores details about each item in an order such as the product name, price, quantity, and subtotal. This table has a primary key of OrderDetailID and foreign keys to the Order and PRODUCT tables. • PRODUCT: stores information about each product such as the product name, description, price, and category. This table has the primary key of ProductID. • STORE: stores information about each store such as the store name, location, and hours of operation. This table has the primary key of StoreID. • INVENTORY: stores information about the inventory for each product in each store such as the quantity on hand and the reorder point. This table has a composite primary key of ProductID and StoreID. Group Assignment • TRANSACTION: stores information about each transaction such as the transaction date, transaction type, and total amount. This table has a primary key of TransactionID and a foreign key to the Customer table. • TRANSACTION_DETAILS: stores details about each item in a transaction such as the product name, price, quantity, and subtotal. This table has the primary key of TransactionDetailID and foreign keys to the TRANSACTION and PRODUCT tables. • EMPLOYEE: stores employee information such as name, address, phone number, email, and position. This table has the primary key of EmployeeID. • SALARY: stores information about the salary for each employee such as the salary amount, start date, and end date. This table has a composite primary key of EmployeeID and StartDate. • SHIFT: stores information about the shift for each employee such as the start time, end time, and store location. This table has a primary key of ShiftID and foreign keys to the Employee and STORE tables.
05-23
ATE TABLE ORDER_DETAILS ( OrderDetailID NUMBER PRIMARY KEY, OrderID NUMBER, ProductID NUMBER, ProductName VARCHAR2(100), Price NUMBER, Quantity NUMBER, Subtotal NUMBER, CONSTRAINT FK_ORDER_DETAILS_ORDER FOREIGN KEY (OrderID) REFERENCES "ORDER"(OrderID), CONSTRAINT FK_ORDER_DETAILS_PRODUCT FOREIGN KEY (ProductID) REFERENCES PRODUCT(ProductID) ); CREATE TABLE PRODUCT ( ProductID NUMBER PRIMARY KEY, ProductName VARCHAR2(100), Description VARCHAR2(200), Price NUMBER, Category VARCHAR2(50) ); CREATE TABLE STORE ( StoreID NUMBER PRIMARY KEY, StoreName VARCHAR2(100), Location VARCHAR2(200), HoursOfOperation VARCHAR2(100) ); CREATE TABLE INVENTORY ( ProductID NUMBER, StoreID NUMBER, QuantityOnHand NUMBER, ReorderPoint NUMBER, PRIMARY KEY (ProductID, StoreID), CONSTRAINT FK_INVENTORY_PRODUCT FOREIGN KEY (ProductID) REFERENCES PRODUCT(ProductID), CONSTRAINT FK_INVENTORY_STORE FOREIGN KEY (StoreID) REFERENCES STORE(StoreID) ); CREATE TABLE "TRANSACTION" ( TransactionID NUMBER PRIMARY KEY, TransactionDate DATE, TransactionType VARCHAR2(20), TotalAmount NUMBER, CustomerID NUMBER, CONSTRAINT FK_TRANSACTION_CUSTOMER FOREIGN KEY (CustomerID) REFERENCES CUSTOMER(CustomerID) ); CREATE TABLE TRANSACTION_DETAILS ( TransactionDetailID NUMBER PRIMARY KEY, TransactionID NUMBER, ProductID NUMBER, ProductName VARCHAR2(100), Price NUMBER, Quantity NUMBER, Subtotal NUMBER, CONSTRAINT FK_TRANSACTION_DETAILS_TRANSACTION FOREIGN KEY (TransactionID) REFERENCES "TRANSACTION"(TransactionID), CONSTRAINT FK_TRANSACTION_DETAILS_PRODUCT FOREIGN KEY (ProductID) REFERENCES PRODUCT(ProductID) ); CREATE TABLE EMPLOYEE ( EmployeeID NUMBER PRIMARY KEY, Name VARCHAR2(100), Address VARCHAR2(200), Phone VARCHAR2(20), Email VARCHAR2(100), Position VARCHAR2(50) ); CREATE TABLE SALARY ( EmployeeID NUMBER, StartDate DATE, SalaryAmount NUMBER, EndDate DATE, PRIMARY KEY (EmployeeID, StartDate), CONSTRAINT FK_SALARY_EMPLOYEE FOREIGN KEY (EmployeeID) REFERENCES EMPLOYEE(EmployeeID) ); CREATE TABLE SHIFT ( ShiftID NUMBER PRIMARY KEY, StartTime TIMESTAMP, EndTime TIMESTAMP, StoreID NUMBER, EmployeeID NUMBER, CONSTRAINT FK_SHIFT_EMPLOYEE FOREIGN KEY (EmployeeID) REFERENCES EMPLOYEE(EmployeeID), CONSTRAINT FK_SHIFT_STORE FOREIGN KEY (StoreID) REFERENCES STORE(StoreID) ); CREATE TABLE REVIEW ( ReviewID NUMBER PRIMARY KEY, CustomerID NUMBER, ProductID NUMBER, ReviewText VARCHAR2(200), ReviewDate DATE, CONSTRAINT FK_REVIEW_CUSTOMER FOREIGN KEY (CustomerID) REFERENCES CUSTOMER(CustomerID), CONSTRAINT FK_REVIEW_PRODUCT FOREIGN KEY (ProductID) REFERENCES PRODUCT(ProductID) ); CREATE TABLE RATING ( RatingID NUMBER PRIMARY KEY, CustomerID NUMBER, ProductID NUMBER, RatingValue NUMBER, RatingDate DATE, CONSTRAINT FK_RATING_CUSTOMER FOREIGN KEY (CustomerID) REFERENCES CUSTOMER(CustomerID), CONSTRAINT FK_RATING_PRODUCT FOREIGN KEY (ProductID) REFERENCES PRODUCT(ProductID) );你能帮我给每个表插入至少十条数据不
最新发布
05-23
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值