sql server2000-2008版本中有没有sql语句能实现类似db2中export/import导入导出表内部分数据
如"export to btpoper.txt of del select * from btpoper"
"import from btpoper.txt of del insert into btpoper"
请熟悉sql server的大侠指点一下 不胜感激
------解决方案--------------------
- SQL code
insert into tb select * from tainsert into tb(col1,col2...) select co11,col2,... from tb---前后一一对应