USE [WP7NotificationServer]
GO
/****** Object: StoredProcedure [dbo].[sp_HugeFlowAppManifest_List_Select] Script Date: 05/31/2011 14:35:17 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/*
Developer : test
Date : 2010/11/18
Desc : test
*/
CREATE proc [dbo].[sp_WP7NotificationServer_List_Select]
@AppID int
AS
BEGIN
SELECT [Idx]
,[Subscriber]
,[SubScribeDate]
From [WP7NotificationServer]
END
GO
이건 그냥 단순한 list select
이건 insert
USE [WP7NotificationServer]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create proc [dbo].[sp_WP7NotificationServer_Insert]
@AppID int
,@SubScriber VARCHAR(255)
,@SubScribeDate datetime
AS
INSERT INTO WP7NotificationSever_Subscribers(AppID , SubScriber, SubScribeDate) VALUES (@AppID , @Subscriber,@SubScribeDate)
머 이런식으로 하면 된다 쉽다.
'database' 카테고리의 다른 글
[db] DECIMAL 형식이란? (0) | 2010.04.19 |
---|---|
[db] DECLARE로 정의한 함수 보기 (0) | 2010.04.19 |
[DB] JOIN에 대한 것 (0) | 2010.04.13 |
[db] query문 에서 변수 설정및 for문 형변환 이용하기 (0) | 2010.01.07 |
[db] db 정보 확인 (1) | 2010.01.07 |