create procedure New_Procedure (id MY_INT)
returns (name MY_CHAR60)
as
begin
  name = cast(id as MY_CHAR60);
  suspend;
end

И это даже работает :)

Ответить