Procedures Previous topic Chapter index Next topic

RELLENAR_CON_CEROS

 

Input Parameters

Parameter

Type

Description

NUMERO

BIGINT

 

LONGITUD

INTEGER

 

 

Output Parameters

Parameter

Type

Description

CADENA

VARCHAR(50)

 

 

Description

(There is no description for procedure RELLENAR_CON_CEROS)

 

Definition

CREATE PROCEDURE RELLENAR_CON_CEROS(
    NUMERO BIGINT,
    LONGITUD INTEGER)
RETURNS (
    CADENA VARCHAR(50))
AS
begin
  /* R.5.0.17 */
  suspend;
end

 

     Previous topic Chapter index Next topic