导出mysql数据库或者表到.sql文件。
mysqldump –h主机 –u用户名 –p密码 数据库 表>任意名.sql
导出特定字段到本地文件:
select id from 表 where name=’123’ into outfile ‘/tmp/tim.sql’;
导入数据到mysql:
方法一:
mysql –h主机 -u用户名 –p密码 数据库 < 2.0.0.sql
方法二:
登录mysql客户端,然后输入:
source /目录/2.0.0.sql
导出mysql数据库或者表到.sql文件。
mysqldump –h主机 –u用户名 –p密码 数据库 表>任意名.sql
导出特定字段到本地文件:
select id from 表 where name=’123’ into outfile ‘/tmp/tim.sql’;
导入数据到mysql:
方法一:
mysql –h主机 -u用户名 –p密码 数据库 < 2.0.0.sql
方法二:
登录mysql客户端,然后输入:
source /目录/2.0.0.sql