In the previous article Local Scalar Variable , we learn about local scope variable in HANA.
In this article we will show how variables scope works in HANA.
Introduction:
SQLScript supports local variable declaration in a nested block. Local variables are only visible in the scope of the block in which they are defined. It is also possible to define local variables inside LOOP / WHILE /FOR / IF-ELSE control structures.
Create procedure:
Copy and paste the below script to create the procedure.
-- REPLACE <SCHEMA_NAME> WITH YOUR SCHEMA
CREATE PROCEDURE "<SCHEMA_NAME>"."VARIABLE_SCOPE_EXAMPLE"(
OUT val INT)
LANGUAGE SQLSCRIPT
READS SQL DATA
AS
BEGIN
DECLARE a INT := 1;
BEGIN
DECLARE a INT := 2;
BEGIN
DECLARE a INT;
a := 3;
END;
val := a;
END;
END;
Call procedure:
Call the procedure using below statement.
CALL "<SCHEMA_NAME>"."VARIABLE_SCOPE_EXAMPLE"(?);
The output will be 2.
From this result you can see that the inner most nested block value of 3 has not been passed to the val variable.
In this article we will show how variables scope works in HANA.
Introduction:
SQLScript supports local variable declaration in a nested block. Local variables are only visible in the scope of the block in which they are defined. It is also possible to define local variables inside LOOP / WHILE /FOR / IF-ELSE control structures.
Create procedure:
Copy and paste the below script to create the procedure.
-- REPLACE <SCHEMA_NAME> WITH YOUR SCHEMA
CREATE PROCEDURE "<SCHEMA_NAME>"."VARIABLE_SCOPE_EXAMPLE"(
OUT val INT)
LANGUAGE SQLSCRIPT
READS SQL DATA
AS
BEGIN
DECLARE a INT := 1;
BEGIN
DECLARE a INT := 2;
BEGIN
DECLARE a INT;
a := 3;
END;
val := a;
END;
END;
Call procedure:
Call the procedure using below statement.
CALL "<SCHEMA_NAME>"."VARIABLE_SCOPE_EXAMPLE"(?);
The output will be 2.
From this result you can see that the inner most nested block value of 3 has not been passed to the val variable.
ReplyDeleteThis blog was making more interesting. Keep adding more information on your page.
C C++ Training in Chennai
c++ course
c++ class
c c++ course fee
JMeter Training in Chennai
Appium Training in Chennai
javascript training in chennai
core java training in chennai
I really enjoyed this article. I need more information to learn so kindly update it.
ReplyDeleteSelenium Training in Chennai
Selenium Course in Chennai
selenium certification in chennai
Best selenium Training Institute in Chennai
Selenium Training in Velachery
Selenium training in Adyar
Python Training in Chennai
Software testing training in chennai
JAVA Training in Chennai