Equivalent declaration and setting the variable as below.
DECLARE @name varchar(255)
,@address varchar(255)
,@country varchar(255)
SELECT @name = name
,@address = address
,@country = country
FROM tbl_address
WHERE id =5
When converting this code into snowflake SP, what's the best way to handle the declaration and setting the variable from table.
