CREATE VIEW engenheiroNivel AS SELECT E.nome, T.codigo, T.nivelAtual from empregado E, engenheiro G, relTorreLaboratorio R, torre T where T.nivelAtual>10000 and T.codigo = R.codTorre and R.codLaboratorio = G.codLaboratorio and G.cpf = E.cpf;