sql 创建sp2RPT_CES_ListarPlanEstudiosxListOfEducPeriodo - Lista planes de estudio en base a una list
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 创建sp2RPT_CES_ListarPlanEstudiosxListOfEducPeriodo - Lista planes de estudio en base a una list相关的知识,希望对你有一定的参考价值。
----------------------------INICIO PROCEDIMIENTO ------------------------
IF OBJECT_ID('sp2RPT_CES_ListarPlanEstudiosxListOfEducPeriodo', 'P') IS NOT NULL
DROP PROC sp2RPT_CES_ListarPlanEstudiosxListOfEducPeriodo
GO
CREATE PROCEDURE [dbo].[sp2RPT_CES_ListarPlanEstudiosxListOfEducPeriodo]
@idOfEduc listaSmallInt READONLY,
@iFolioPeriodo BIGINT
/* --------------------------------------------------------------------------------------------------------------
FECHA | AUTOR | DESCRIPCION
25/ago./2017 | Luis Bernal |
--------------------------------------------------------------------------------------------------------------*/
AS
BEGIN
SET NOCOUNT ON;
SELECT DISTINCT cpe.idPlanEstudios
,cpe.sNombre + ' (' + cpe.sVersion + ')' AS sPlanEstudiosV
,cpe.idFormEvaluacion
,cpe.iDuracion
,cpe.idOfEduc
,cpe.bActivo
,cpe.idPlan
FROM Cat_PlanEstudios AS cpe
INNER JOIN @idOfEduc AS ioe ON ioe.id = cpe.idOfEduc
INNER JOIN Ctrl_Periodos AS cp ON cp.iFolio = @iFolioPeriodo
AND cp.idPlan = cpe.idPlan
WHERE cpe.bActivo = 1
ORDER BY cpe.sNombre + ' (' + cpe.sVersion + ')'
END
以上是关于sql 创建sp2RPT_CES_ListarPlanEstudiosxListOfEducPeriodo - Lista planes de estudio en base a una list的主要内容,如果未能解决你的问题,请参考以下文章