SóProvas


ID
3226141
Banca
INSTITUTO AOCP
Órgão
PRODEB
Ano
2018
Provas
Disciplina
Banco de Dados
Assuntos

Dentro dos bancos de dados relacionais, foi criada uma linguagem estruturada de consulta denominada SQL, sendo esta uma linguagem padronizada que pode ser utilizada em vários bancos de dados relacionais. A estrutura SQL é subdividida em alguns grupos principais. Podem pertencer ao grupo de comando da estrutura SQL.

Alternativas
Comentários
  • b-

    Data definition language (DDL) statements let you to perform these tasks:

       Create, alter, and drop schema objects

       Grant and revoke privileges and roles

       Analyze information on a table, index, or cluster

       Establish auditing options

       Add comments to the data dictionary

    The CREATE, ALTER, and DROP commands require exclusive access to the specified object. For example, an ALTER TABLE statement fails if another user has an open transaction on the specified table.

    ______________________

    Data manipulation language (DML) statements access and manipulate data in existing schema objects. These statements do not implicitly commit the current transaction. The data manipulation language statements are:

    CALL

    DELETE

    EXPLAIN PLAN

    INSERT

    LOCK TABLE

    MERGE

    SELECT

    UPDATE

    https://docs.oracle.com/cd/B14117_01/server.101/b10759/statements_1001.htm#i2099257