方法一:查询语句直接输出语法格式: Example: select * into outfile '/data/var-3307/catid.xls' from help_cat where 1 order by cat_id desc limit 0,20; select * into outfile '导出文件存放目录' from 表面和查询条件等信息! 请注意权限问题,如果实在不行,放在/tmp 目录下 方法二:在shell命令行下把Excel以文本方式打开,然后另存为,在编码选择ansi…
把mysql的数据导出成txt select a from b into outfile '/sqlfile/a.txt'; my.ini里需要设置secure_file_priv = d:/sqlfile; linux中是/etc/my.conf,必须导出到配置的地方,导出到其他地方会报错: Query OK, 2kw rows affected (1 min 33.86 sec) 速度还是挺快的: 如果导出到其他路径,会出现: ERROR 1290 (HY000): The MySQL se…
从数据库中导出数据的方法,这里就不提了,网上有很多方法,如果闲麻烦,可以看一下这个:mysql导出数据 其实使用最简单的下面这个语句: mysql > select * from demo into outfile "~/demo.txt"; 上面的代码在mysql中运行,运行结果就是在家目录生成一个demo.txt文件,文件内容就是查出的数据内容,并且内容中每个字段值默认的是使用的制表符作为分隔符. 当然可以使用下面的代码,自定义分隔符,使用什么符号包含内容,以及换行符. my…
一.导出一张表数据 把test_time表中的数据导出成txt 文件 mysql> show global variables like '%secure%'; +--------------------------+-----------------------+ | Variable_name | Value | +--------------------------+-----------------------+ | require_secure_transport | OFF | |…
使用sql语句导出数据: 导出时如果不写绝对路径,会提示The MySQL server is running with the --secure-file-priv option so it cannot execute this statement. 使用 show variables like "%secure%" 查看secure_file_priv 设置的路径,导出时必须是这个路径才能导出,默认NULL的话是禁止导出的. 导出命令:select id,分数 from scor…