청강컴정/DataBase

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

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