Untitled
By: a guest | Apr 21st, 2010 | Syntax:
T-SQL | Size: 0.42 KB | Hits: 145 | Expires: Never
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Matthew Raymer, Developer
-- Create date: April 16, 2010
-- Description: Select all records
-- =============================================
CREATE PROCEDURE sps_rssfeeds_getbyid
@p_rssid INT
AS
BEGIN
SET NOCOUNT ON;
SELECT
RSSID,
URL,
Name
FROM
RSSFEEDS
WHERE
RSSID = @p_rssid
END
GO