Advertisement
buzzonit

mayara UNIAO MYSQL

Oct 25th, 2016
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.75 KB | None | 0 0
  1. Uniao entre diversos tabelas
  2. Banco de Dados Escola de Idiomas
  3.  
  4. Alunos                  Turmas              Cursos
  5. Codalu                  Codtur              Codcur
  6. Nome                    Codcur              nome
  7. Telefone                Codpro              Duracao
  8. Endereco    Turmas      Horario            
  9.             Codalu      DataInicio          professores
  10.             Codtur      DataTermino         Codpro
  11.                         Preco               nome
  12.                                             telefone
  13.  
  14. Selecionando o nome dos alunos e os horarios de suas turmas:
  15. SELECT alunos.nome, turmas.horario
  16. FROM (alunos INNER JOIN turmas_Detalhe ON
  17. alunos.codalu = turmas-Detalhe.codalu) INNER JOIN turmas on turmasdetalhe.codtur = turmas.codtur;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement