>데이터 베이스 >MySQL 튜토리얼 >从数据库中导出数据

从数据库中导出数据

WBOY
WBOY원래의
2016-06-07 15:17:171487검색

首先开启xp_cmdshell权限: EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE; 1,导出数据到txt exec master..xp_cmdshell 'bcp 数据库名..表名 out 文件名t -c -t -U sa -P 密码' 2,导出数据到

首先开启xp_cmdshell权限:

 EXEC sp_configure 'show advanced options', 1;RECONFIGURE;EXEC sp_configure 'xp_cmdshell', 1;RECONFIGURE;

1,导出数据到txt

 exec master..xp_cmdshell 'bcp "数据库名..表名" out "文件名t" -c -t -U sa -P 密码'

 2,导出数据到excel

EXEC master..xp_cmdshell 'bcp 数据库名..表名 out 文件名 -c  -t -U sa -P 密码'

若是数据库表之间复制数据就没这么麻烦了,用如下sql语句

insert into 目标表名(字段1,字段2) select 源表名.字段1,源表名.字段2 from 源表名
 

同时要注意字段的类别一定要匹配。

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.