Advertisement
MiguelazoDS

Untitled

Jan 27th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.21 KB | None | 0 0
  1. SELECT C.titulo AS Curso, CONCAT (A.apellidos, ' ', A.nombre)
  2. AS Alumno
  3. FROM cursos AS C LEFT JOIN alumnos_cursos AS AC
  4. ON C.id_curso = AC.id_curso LEFT JOIN alumnos AS A
  5. ON AC.id_alumno = A.id_alumno
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement