Question
The following code will concatenate two strings str1 and str2 CREATE OR REPLACE PROCEDURE concatenate_strings as str1 VARCHAR2(25) := 'begin'; str2 VARCHAR2(25) := 'end'; result
The following code will concatenate two strings str1 and str2
CREATE OR REPLACE PROCEDURE concatenate_strings as
str1 VARCHAR2(25) := \'begin\';
str2 VARCHAR2(25) := \'end\';
result VARCHAR2(50); BEGIN result := str1 || \'_\' || str2; dbms_output.put_line(\'The result is \' || result); dbms_output.put_line(SYSDATE);
END; /
SET SERVEROUTPUT ON;
EXECUTE concatenate_strings;
Modify this procedure to accept two string parameters.
Example of the output for EXECUTE concatenate_strings(\'big\',\'dog\');
The result is big_dog 26-Jan-16
Write a function f_concatenate_strings that will do the same as concatenate_strings procedure from #1, but can be called from a select statement.
Examples of output: SELECT f_concatenate_strings(\'big\',\'dog\') FROM DUAL;
Will return big_dog 27-JAN-16
SELECT f_concatenate_strings(ProductName, to_char(ListPrice, \'$999.99\')) from ProductTable WHERE ProductID=302;
First, the table ProductTable, then product with ID 302 will be located. Product name of that product will be concatenated with the price and current date.
Will return Wind-Up Water Swimmers_ $2.00 27-JAN-16
Create a procedure that accepts product ID as a parameter and returns the price from ProductTable table. Add exception handling to catch if product ID is not in the table. The table ProductTable already exists (see sample code in this module).
Needs to be completed in SQL Developer and please provide code.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started