sql Configuracióndegrupos por profesor - sp2CES_HOR_ListarGruposTurnoByPlantelPlanEst
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql Configuracióndegrupos por profesor - sp2CES_HOR_ListarGruposTurnoByPlantelPlanEst相关的知识,希望对你有一定的参考价值。
----------------------------INICIO PROCEDIMIENTO ------------------------
IF OBJECT_ID('sp2CES_HOR_ListarGruposTurnoByPlantelPlanEst', 'P') IS NOT NULL
DROP PROC sp2CES_HOR_ListarGruposTurnoByPlantelPlanEst
GO
CREATE PROCEDURE [dbo].[sp2CES_HOR_ListarGruposTurnoByPlantelPlanEst]
(
@idPlantel SMALLINT,
@idPlanEst SMALLINT
/* --------------------------------------------------------------------------------------------------------------
FECHA | AUTOR | DESCRIPCION
18/sep./2017 | Luis Bernal |
--------------------------------------------------------------------------------------------------------------*/
)
AS
BEGIN
SET NOCOUNT ON;
SELECT cg.idGrupo,
cg.iGrado,
cg.sNombre + ' (' + cth.sAbreviatura + ')' AS sGrupoAbrev,
cth.sTipo AS sTurno,
cg.iCapacidad,
cg.iCapacidadMin
FROM dbo.Ctrl_Grupos AS cg
JOIN dbo.Cat_PlanEstudios AS cpe ON cpe.idPlanEstudios = cg.idPlanEstudios
JOIN dbo.Cat_TipoHorario AS cth ON cth.idTipo = cg.idTipoHorario
WHERE cg.idPlantel = @idPlantel AND cg.idPlanEstudios = @idPlanEst
ORDER BY cg.iGrado, cg.sNombre
END
以上是关于sql Configuracióndegrupos por profesor - sp2CES_HOR_ListarGruposTurnoByPlantelPlanEst的主要内容,如果未能解决你的问题,请参考以下文章