finish queries and change to spanish

This commit is contained in:
2019-07-14 12:22:00 -04:00
parent 66b8fe1b6a
commit 8c8e9851b8
5 changed files with 17 additions and 33 deletions

View File

@@ -5,9 +5,9 @@ namespace Colegio {
public string apoderado { get; set; default = ""; }
public string curso { get; set; default = ""; }
public string jefe { get; set; default = ""; }
public string asistente { get; set; default = ""; }
public string ?asistente { get; set; default = ""; }
public Q1 (string alumno = "", string apoderado = "", string curso = "", string jefe = "", string asistente = "") {
public Q1 (string alumno = "", string apoderado = "", string curso = "", string jefe = "", string ?asistente = "") {
this.alumno = alumno;
this.apoderado = apoderado;
this.curso = curso;

View File

@@ -51,8 +51,8 @@ JOIN apoderado AP ON (AP.rut_apoderado = AL.rut_apoderado)
JOIN cursar CU ON (CU.rut_alumno = AL.rut_alumno)
JOIN curso CO ON (CO.id_curso = CU.id_curso)
JOIN profesor PJ ON (PJ.rut_profesor = CO.rut_profesor)
JOIN asistente ASI ON (ASI.id_curso = CO.id_curso)
JOIN profesor PA ON (PA.rut_profesor = ASI.rut_profesor)
LEFT JOIN asistente ASI ON (ASI.id_curso = CO.id_curso)
LEFT JOIN profesor PA ON (PA.rut_profesor = ASI.rut_profesor)
JOIN ciudad C ON (C.id_ciudad = AL.id_ciudad)
JOIN region R ON (R.id_region = C.id_region)
WHERE (

View File

@@ -98,8 +98,8 @@ JOIN apoderado AP ON (AP.rut_apoderado = AL.rut_apoderado)
JOIN cursar CU ON (CU.rut_alumno = AL.rut_alumno)
JOIN curso CO ON (CO.id_curso = CU.id_curso)
JOIN profesor PJ ON (PJ.rut_profesor = CO.rut_profesor)
JOIN asistente ASI ON (ASI.id_curso = CO.id_curso)
JOIN profesor PA ON (PA.rut_profesor = ASI.rut_profesor)
LEFT JOIN asistente ASI ON (ASI.id_curso = CO.id_curso)
LEFT JOIN profesor PA ON (PA.rut_profesor = ASI.rut_profesor)
JOIN ciudad C ON (C.id_ciudad = AL.id_ciudad)
JOIN region R ON (R.id_region = C.id_region)
WHERE (