Home >Database >Mysql Tutorial >如何把Access的数据导入到Mysql_MySQL

如何把Access的数据导入到Mysql_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 13:55:311109browse

  在建设网站的过程中,经常要处理一些数据的导入及导出。在Mysql数据库中,一般有两种方法来处理数据的导出:

  1. 使用select * from table_name into outfile “file_name”;

  2. 使用mysqldump实用程序

  下面我们来举例说明:

  假设我们的数据库中有一个库为samp_db,一个表为samp_table。现在要把samp_table的数据导出。则我们可以利用以下方法来实现:

  在Mysql提示符下打入select * from samp_table into outfile “file_name”;

  在系统命令提示符下打入mysqldump

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn