Consultas
02 - questao select pnome, endereco from funcionario f, departamento d where f.dnr = d.dnumero and dnome = 'Pesquisa';
03 - questao select projnumero, dnum, unome, endereco, datanasc from projeto, funcionario, departamento where projlocal = 'Mauá' and cpf = cpf_gerente and dnum = dnumero;
04 - questao select e.pnome, e.unome, s.pnome, s.unome from funcionario as e, funcionario as s where e.cpf_supervisor = s.cpf
05 - questao select cpf from funcionario;
06 - questao select cpf, dnome from funcionario, departamento where dnr = dnumero;
07 - questao select distinct salario from funcionario;
08 - questao select projnumero from projeto p, funcionario f where dnum = dnr and unome = 'Silva';
09 - questao select pnome, minicial, unome from funcionario f where f.endereco like '%São Paulo%SP%';
10 - questao select pnome, datanasc from funcionario where extract(year from datanasc) between 1950 and 1959;
11 - questao select pnome, minicial, unome, salario*1.1 as novosalario from funcionario f, projeto p, trabalha_em t where f.cpf = t.fcpf and t.pnr = p.projnumero and p.projnome = 'ProdutoX';
12 - questao select pnome, minicial, unome from funcionario where dnr = '5' and salario between 30000 and 40000;
13 - questao select dnome, pnome, minicial, unome, projnome from funcionario f, departamento d, projeto p, trabalha_em t where f.dnr = d.dnumero and f.cpf = t.fcpf and t.pnr = p.projnumero order by dnome, pnome, unome;
14 - questao select pnome from funcionario f, trabalha_em t, projeto p where dnr = 5 and f.cpf = t.fcpf and t.pnr = p.projnumero and t.horas > 10 and p.projnome = 'ProdutoX';
15 - questao select pnome from funcionario, dependente where cpf = fcpf and pnome = nome_dependente;
16 -