SóProvas


ID
2614153
Banca
INSTITUTO AOCP
Órgão
EBSERH
Ano
2016
Provas
Disciplina
Banco de Dados
Assuntos

Um administrador de banco de dados Oracle está programando em PL/SQL e necessita fazer um loop utilizando um FOR. Assinale a alternativa que apresenta corretamente a sintaxe geral para o loop FOR em PL/SQL.

Alternativas
Comentários
  • c-

    Numeric FOR_LOOP loops iterate over a specified range of integers. The range is part of an iteration scheme, which is enclosed by the keywords FOR and LOOP.

    The range is evaluated when the FOR loop is first entered and is never re-evaluated. The loop body is executed once for each integer in the range defined by lower_bound..upper_bound. After each iteration, the loop index is incremented.

    https://docs.oracle.com/cd/B28359_01/appdev.111/b28370/loop_statement.htm#LNPLS01328