MS-SQL table 복사

MS-SQL 2008. 8. 8. 11:01
전체 table복사

insert into aaa_new
select * from aaa

조건 이용 부분 table복사
insert into aaa_new
select top 34500 * from aaa where date_rec >= '2003-08-01' order by date_rec
Posted by 시스템매니아
,