블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Category

Recent Post

Recent Comment

Archive

2009. 9. 22. 15:52 .Net Project/WindowServer2008
반응형


 --방명록 테이블 설계
Create Table GuestBooks
(
    ItemID Int Identity(1,1) Primary Key,
    Name VarChar(25) Not Null,
    Content Varchar(8000) Not Null,
    Password VarChar(20) Not Null,
    PostDate SmallDateTime Default(GetDate()),
    PostIP VarChar(15)
)
Go

--예시문 6개 티이핑
--Insert Into GuestBooks Values('김용원',1234,GETDATE(),'192.168.10.133')
--Go
--Insert Into GuestBooks Values('이준철',4321,GETDATE(),'192.168.10.134')
--Go

Select *From GuestBooks

--샘플 데이터 100개 입력

 Declare @i Int
Set @i = 1
While @i <= 100
Begin
 If @i % 2 = 0
 Begin
         Insert Into GuestBooks Values('김용원', '안녕', '1234', GetDate
                                                    (),'127.0.0.1');
 End
 Else
 Begin
         Insert Into GuestBooks Values('이준철', '방가', '1234', GetDate
                                                    (),'127.0.0.1'); 
 End 
         Set @i = @i + 1
 End  
Go 

Select COUNT(*) From GuestBooks

--Select *From GuestBooks

--6개 저장 프로시저 생성 : 하세요

--입력

 Create Proc AddGuestBook
          @Name VarChar(25),
          @Content VarChar(8000),
          @Password VarChar(20),
          @PostIP VarChar(15)
 As  
          Insert Into GuestBooks Values(@Name,@Content, @Password,
                                                   GetDate(),@PostIP);
Go

--출력

Create Proc GetGuestBooks
As
         Select *From GuestBooks Order By ItemID Desc
Go

 



반응형
posted by Magic_kit