This is an old revision of the document!
A Constant is a symbolic name that captures a value does not change while a program is running and is usually used for capturing initialization or site specific parameters. Constants are in contrast with variables, which are symbols represent different values that can change during the execution of program.
A constant can be a:
25, 3.6, 3.14, etc.'a', '$', '_', etc.“Bitcoin”, “Hyperledger”, “Medical Records”, etc.CREATE CONSTANT <ConstantName> AS <SimpleExpression>;
CREATE CONSTANT PRECISION AS 2 CREATE CONSTANT Version AS 3.5.1 CREATE CONSTANT Currency_Symbol AS '§' CREATE CONSTANT Currency_Name AS "My Coin"