Assign your last name as the value of the text variable in the executable section of the block. Include statements in the block to display each variable's value onscreen.
1
Expert's answer
2016-03-07T08:41:09-0500
This is an example of stored procedure in Firebird:
create or alter procedure NEW_PROCEDURE as declare variable TEXT_VAR varchar(20); begin text_var = 'Globov'; suspend; end
Comments
Leave a comment