MySQL将执行结果输出到文件中

MySQL将执行结果输出到文件中

Windows平台


将select结果输出到指定文件中

mysql> select host,user from user into outfile "d:\\sql.txt";
Query OK, 4 rows affected
mysql> select host,user from user into outfile "d:/sql.txt";
1086 - File 'd:/sql.txt' already exists



你可能感兴趣的:(MySQL将执行结果输出到文件中)