dbo.usp_GetProductEditionByLicense.StoredProcedure.sql 2.25 KB
USE [AIADatabaseV5]
GO
/****** Object:  StoredProcedure [dbo].[usp_GetProductEditionByLicense]    Script Date: 2/1/2018 12:15:55 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- ====================================================  
-- Author:  Magic Software  
-- Create date: 23-Dec-2009  
-- Description: To get the details of all discounts  
-- ==================================================== 

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[usp_GetProductEditionByLicense]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[usp_GetProductEditionByLicense]
GO
 
CREATE PROCEDURE [dbo].[usp_GetProductEditionByLicense]   
 -- Add the parameters for the stored procedure here  
 @iLicenseId int
AS  
BEGIN  
 -- SET NOCOUNT ON added to prevent extra result sets from  
 -- interfering with SELECT statements.  
 SET NOCOUNT ON;  
	 SELECT     Edition.Id, Edition.Title, Edition.IsActive, Edition.Priority
	 FROM  Edition
	 INNER JOIN LicenseToEdition ON  Edition.Id = LicenseToEdition.EditionId
	 WHERE  LicenseToEdition.LicenseId =@iLicenseId
END  


GO