dbo.GetLicenseEditionsForModesty.StoredProcedure.sql
2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
USE [AIADatabaseV5]
GO
/****** Object: StoredProcedure [dbo].[GetLicenseEditionsForModesty] Script Date: 02/06/2018 10:49:32 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: magic
-- Create date: 23/4/2009
-- Description: Fetch Editions for modesty setting for given Account Number.
-- =============================================
CREATE PROCEDURE [dbo].[GetLicenseEditionsForModesty]
-- Add the parameters for the stored procedure here
@iLicenseId int, @iBuildingLevelId int
AS
BEGIN
IF 1=0 BEGIN
SET FMTONLY OFF
END
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
IF @iBuildingLevelId = 0
BEGIN
SELECT Edition.Title, LicenseToEdition.IsModesty as IsModesty
FROM LicenseToEdition
INNER JOIN Edition ON LicenseToEdition.EditionId = Edition.Id
WHERE LicenseToEdition.LicenseId=@iLicenseId and Edition.IsActive=1 ORDER BY Edition.Priority
END
ELSE
BEGIN
SELECT Edition.Title, SiteToLicenseEdition.IsModesty as IsModesty
FROM SiteToLicenseEdition
INNER JOIN LicenseToEdition ON SiteToLicenseEdition.LicenseEditionId = LicenseToEdition.Id
INNER JOIN Edition ON LicenseToEdition.EditionId = Edition.Id
WHERE SiteToLicenseEdition.SiteId=@iBuildingLevelId and Edition.IsActive=1 ORDER BY Edition.Priority
END
END
GO