Imagem de fundo

Considere uma tabela nomeada como TB_CONCURSO em um SGBD SQL Server 2022. Assinale a al...

Considere uma tabela nomeada como TB_CONCURSO em um SGBD SQL Server 2022. Assinale a alternativa que corresponde a um comando SQL que irá excluir todos os registros da tabela TB_CONCURSO, mantendo a estrutura da tabela.


A

DELETE TB_CONCURSO;


B

TRUNCATE TABLE TB_CONCURSO;


C

UPDATE TB_CONCURSO SET NULL;


D

DROP TABLE TB_CONCURSO;