select .... outfile  'file_path' fields terminate by '\t' lines terminate by '\r\n' from table_name;

---------------------------------------------------------------------------------------------------------------------------------------------------

例子:

      select * into outfile 'E:/3.txt' fields terminated by '\t'  lines terminated by '\r\n' from employee;

      MYSQL select ....outfile.....from.....

相关文章:

  • 2021-11-07
  • 2022-01-27
  • 2022-12-23
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2021-05-17
  • 2022-12-23
猜你喜欢
  • 2021-10-01
  • 2021-07-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案