Hola buenas tardes.
Tengo una duda sobre una consulta sql, como puedo agregarle un criterio de busqueda a este query
Código MySQL:
Ver original SELECT tb_datos_generales.S_CORREO
AS correo_alumno
,tb_alumno.ID_ALUMNO
as id_alumno
,tb_alumno.N_ID_PARIENTE
, tb_datos_generales.S_NOMBRE
AS nombre_alumno
,tb_alumno.N_ASIGNADO
as id_grupo
,tb_grupo.S_GRUPO
as grupo
FROM tb_alumno
JOIN tb_grupo
ON tb_grupo.N_ID_GRUPO
= tb_alumno.N_ASIGNADO
LEFT JOIN tb_datos_generales
ON tb_datos_generales.N_DATOS_PERSONALES
= tb_alumno.N_DATOS_PERSONALES
SELECT tb_datos_generales.S_CORREO
as correo_pariente
, tb_parientes.N_DATOS_PERSONALES
as datos_personales_parientes
, tb_parientes.N_ID_PARIENTE
,tb_datos_generales.S_NOMBRE
as nombre_pariente
LEFT JOIN tb_datos_generales
ON tb_datos_generales.N_DATOS_PERSONALES
= tb_parientes.N_DATOS_PERSONALES
ON t1.N_ID_PARIENTE
= t2.N_ID_PARIENTE
)
es decir quiero agregarle un
Espero me hayan entendido.
Saludos