Advertisement
11eimilia11

Selecoes no BD

Jan 21st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.95 KB | None | 0 0
  1. USE IchibaSuperMarket;
  2.  
  3. SELECT *
  4. FROM funcionario;
  5.  
  6. -- Selecionando todos os funcionarios do sexo masculino
  7.  
  8. SELECT  cnpj_matriz , nome
  9. FROM funcionario
  10. WHERE sex = 'M';
  11.  
  12. -- Selecionando todos os funcionários ativos
  13.  
  14. SELECT nome , CPF , situacao
  15. FROM funcionario
  16. WHERE situacao = 'ativo';
  17.  
  18. -- Consulta de entregas feitas por entregador
  19.  
  20. SELECT *
  21. FROM entregador;
  22.  
  23. -- 32568071001 , 32970753502 , 33666472214 , 86147207504
  24.  
  25. SELECT nome , cnpj_matriz , sex
  26. FROM funcionario
  27. WHERE CPF = '32568071001' OR CPF = '32970753502' OR CPF =  '33666472214'  OR CPF = '86147207504';
  28.  
  29. SELECT seq , data_entrega , hora_estimada
  30. FROM entrega
  31. WHERE CPF_entregador = '33666472214';
  32.  
  33. -- Selecionando funcionarios que trabalham na matriz 'icbpe'
  34.  
  35. SELECT nome , cpf , sex , cnpj_matriz , matriz.nomefantasia
  36. FROM funcionario , matriz
  37. WHERE matriz.nomefantasia = 'ICBPE' AND funcionario.cnpj_matriz = matriz.CNPJ;
  38.  
  39.  
  40. SELECT *
  41. FROM gerencia_estoque;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement