dbo.usp_EC_GetSecurityQuestionList.sql
536 Bytes
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[usp_EC_GetSecurityQuestionList]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[usp_EC_GetSecurityQuestionList]
GO
CREATE PROCEDURE [dbo].[usp_EC_GetSecurityQuestionList]
-- Add the parameters for the stored procedure here
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
select Id,Title
from SecurityQuestion
END