Untitled
By: a guest | Apr 21st, 2010 | Syntax:
VB.NET | Size: 0.51 KB | Hits: 163 | Expires: Never
USE [Test]
GO
/****** Object: StoredProcedure [dbo].[sps_rssfeeds_getbyid] Script Date: 04/21/2010 19:53:19 ******/
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 [dbo].[sps_rssfeeds_delete]
@p_rssid int
AS
BEGIN
SET NOCOUNT ON;
DELETE
RSSFEEDS
where
RSSID = @p_rssid
END