我有這樣的SQL查詢,我試圖通過多種方式來組織,但它並沒有爲我工作,我想按noExp我如何分組這個SQL查詢?
select Alumnos.nombreComp as Nombre,
Carreras.nombre as Carrera,
Alumnos.noExp as Expediente,
Historial.fecha as Fecha,
Historial.equipo as Equipo
from Alumnos, Historial, Carreras
where YEAR(fecha)= @año
and MONTH (fecha)[email protected]
and Historial.noExp = Alumnos.noExp
and Alumnos.carrera = Carreras.id_carrera
and Alumnos.activo = 1
幫助!
'我想通過noExp'進行分組,您好,您想對其他列做什麼? – Lamak
顯示相應的值 –
但是,您正在對一列進行分組,其餘的「相應」值是什麼?最小?最大?什麼? – Lamak