SóProvas


ID
161530
Banca
FCC
Órgão
MPE-RS
Ano
2008
Provas
Disciplina
Banco de Dados
Assuntos

Ao tipo de variável simples binary integer utilizado na
PL/SQL são associados os subtipos

Alternativas
Comentários
  • For your convenience, PL/SQL predefines the following BINARY_INTEGER subtypes:

    NATURAL
    NATURALN
    POSITIVE
    POSITIVEN
    SIGNTYPE

    The subtypes NATURAL and POSITIVE let you restrict an integer variable to non-negative or positive values, respectively. NATURALN and POSITIVEN prevent the assigning of nulls to an integer variable. SIGNTYPE lets you restrict an integer variable to the values -1, 0, and 1, which is useful in programming tri-state logic.

    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/datatypes.htm
  • O tipo BINARY_INTEGER tem os seguintes subtipos:

       o  NATURAL e POSITIVE: restringem um inteiro a valores não negativos e positivos respectivamente.

       o  NATURALN e POSITIVEN não permitem valores NULL, deve ser atribuído um valor na declaração.

       o  SIGNTYPE restringem valores inteiros a –1, 0 e 1.