📅  最后修改于: 2022-03-11 15:04:59.390000             🧑  作者: Mango
代码示例2
do
$$
Declare
Nome varchar(150);
Begin
Select c_name into Nome from customer where c_custkey = 1;
raise notice 'HEllo world %', Nome;
end;
$$