상세 컨텐츠

본문 제목

10만건 데이터 자동으로 입력하기

청강컴정/DataBase

by luckey 2009. 3. 29. 03:27

본문

declare @intloop int

set @intloop = 0
while(@intloop <= 100000) begin

insert into fBoard (b_title, b_contents, b_name, b_pwd) values ('제목','내용','홍길동','1111')

set @intloop = @intloop+1

end

관련글 더보기

댓글 영역