init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
DROP PROCEDURE IF EXISTS [dbo].[uspGetTanuloMulasztasa]
|
||||
GO
|
||||
|
||||
CREATE PROCEDURE [dbo].[uspGetTanuloMulasztasa]
|
||||
@pTanuloId int
|
||||
,@pTanevId int
|
||||
,@pMulasztasTipus int
|
||||
,@pIgazolt char(1)
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON;
|
||||
|
||||
SELECT TANULO.C_ORATANULOIID
|
||||
FROM T_TANULOMULASZTAS_OSSZES AS TANULO
|
||||
WHERE TANULO.C_ORATANULOIID = @pTanuloId
|
||||
AND TANULO.C_TANEVID = @pTanevId
|
||||
AND TANULO.TOROLT = 'F'
|
||||
AND TANULO.C_TIPUS = @pMulasztasTipus
|
||||
AND TANULO.C_IGAZOLT = @pIgazolt;
|
||||
END
|
||||
GO
|
||||
Reference in New Issue
Block a user