Procedures Previous topic Chapter index Next topic

PARIDAD

 

Input Parameters

Parameter

Type

Description

NUMERO

BIGINT

 

 

Output Parameters

Parameter

Type

Description

CADENA

VARCHAR(50)

 

 

Description

(There is no description for procedure PARIDAD)

 

Definition

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

 

     Previous topic Chapter index Next topic