Heim > Datenbank > MySQL-Tutorial > 从数据库中导出数据

从数据库中导出数据

WBOY
Freigeben: 2016-06-07 15:17:17
Original
1484 Leute haben es durchsucht

首先开启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 源表名
 

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

 

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage