In the PL/SQL block shown below, determine the values for ea…
In the PL/SQL block shown below, determine the values for each of the following cases, after the block is run.DECLARE customer VARCHAR2(50) := ‘APPLE’; credit_rating VARCHAR2(50) := ‘EXCELLENT’;BEGIN DECLARE customer NUMBER(7) := 201; name VARCHAR2(25) := ‘GOOGLE’; BEGIN credit_rating :=’GOOD’; END;a. The value of customer in the nested block is:b. The value of name in the nested block is:c. The value of credit_rating in the nested block is:d. The value of customer in the main block is:e. The value of name in the main block is:f. The value of credit_rating in the main block is:
Read Details