Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda DROP e TRUNCATE | DDL e DML em SQL
SQL Intermediário
course content

Conteúdo do Curso

SQL Intermediário

SQL Intermediário

1. Agrupamento
2. Subconsultas Aninhadas
3. Juntando Tabelas
4. DDL e DML em SQL

book
DROP e TRUNCATE

It's worth mentioning two more operations in DDL: DROP and TRUNCATE.

DROP: Used to delete database objects such as tables, databases, and indexes.

TRUNCATE: Removes all rows from a table but preserves the table's structure.

We've used these operations to clear or delete tables to check tasks in previous chapters:

É importante mencionar mais duas operações em DDL: DROP e TRUNCATE.

Vamos considerar brevemente o que cada uma dessas operações faz:

DROP: Utilizado para excluir objetos de banco de dados como tabelas, bancos de dados e índices.

TRUNCATE: Remove todas as linhas de uma tabela, mas preserva a estrutura da tabela.

Eu utilizei essas operações para limpar ou excluir tabelas ao verificar tarefas em capítulos anteriores. Sua sintaxe é bastante simples; vamos olhar para elas:

1
TRUNCATE TABLE employees;
copy
What is the main difference between `DROP TABLE` and `TRUNCATE TABLE` operations?

What is the main difference between DROP TABLE and TRUNCATE TABLE operations?

Selecione a resposta correta

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 4. Capítulo 3
We're sorry to hear that something went wrong. What happened?
some-alt