Advertisement
MiguelazoDS

Untitled

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