간단 Ms-Sql Cursor
database 2009. 7. 10. 14:00begin
DECLARE @seq int
DECLARE sn_cursor CURSOR
FOR
select seq, content from dbo.test
OPEN sn_cursor
FETCH NEXT FROM sn_cursor INTO @seq
WHILE @@FETCH_STATUS = 0
BEGIN
insert into dbo.test2 (seq) values (@seq)
FETCH NEXT FROM sn_cursor INTO @seq
END
close sn_cursor
deallocate sn_cursor
end
DECLARE @seq int
DECLARE sn_cursor CURSOR
FOR
select seq, content from dbo.test
OPEN sn_cursor
FETCH NEXT FROM sn_cursor INTO @seq
WHILE @@FETCH_STATUS = 0
BEGIN
insert into dbo.test2 (seq) values (@seq)
FETCH NEXT FROM sn_cursor INTO @seq
END
close sn_cursor
deallocate sn_cursor
end
'database' 카테고리의 다른 글
Ms-Sql identity를 설정한 컬럼에 데이터 입력하기 (0) | 2010.01.03 |
---|---|
Ms-Sql newid()를 이용한 랜덤 정렬 (0) | 2009.09.30 |
Ms-sql에서 데이터베이스의 정보를 알 수 있는 정보 스키마 뷰(INFORMATION_SCHEMA) (0) | 2009.09.18 |
Ms-Sql 암호화, 복호화 (PwdEncrypt, PwdCompare) (2) | 2009.08.24 |
Ms-Sql LDF파일 용량 줄이기 (0) | 2009.07.14 |
Oracle SQL Developer for MS-Sql (0) | 2009.06.16 |
Oracle 현재 버전을 가져오는 쿼리 (0) | 2009.03.09 |
Oracle Sequence (0) | 2009.03.05 |
무료로 사용 가능한 Oracle SQL Developer (0) | 2009.03.04 |
tibero jdbc 정보 (0) | 2009.01.05 |