Criar uma view chamada DEP_VW com base nas colunas COD_DEP e NOME_DEP da tabela DEP.
CREATE VIEW DEP_VW AS SELECT COD_DEP, NOME_DEP FROM DEP;
Excluir a view criada no item anterior.
DROP VIEW DEP_VW;
Eliminar todas as linhas da tabela FUNC (utilizar o comando TRUNCATE).
TRUNCATE TABLE FUNC;
Eliminar a tabela FUNC.
DROP TABLE FUNC;
Eliminar a tabela DEP.
DROP TABLE DEP;