Function is used to get the order id value


Write a script that creates and calls a stored procedure named proc_seven. This procedure should include these statements coded as a transaction:
INSERT INTO orders VALUES
(DEFAULT, 3, NOW(), '10.00', '0.00', NULL, 4,
'American Express', '378282246310005', '04/2013', 4);

SELECT LAST_INSERT_ID()
INTO order_id;

INSERT INTO order_items VALUES
(DEFAULT, order_id, 6, '415.00', '161.85', 1);

INSERT INTO order_items VALUES
(DEFAULT, order_id, 1, '699.00', '209.70', 1);
Here, the LAST_INSERT_ID function is used to get the order ID value that's automatically generated when the first INSERT statement inserts an order. If these statements execute successfully, commit the changes. Otherwise, roll b 

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: Function is used to get the order id value
Reference No:- TGS080443

Expected delivery within 24 Hours