init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue