寻找一种从MySQL数据库查询数据的方法将其写入输出txt文件

时间:2012-06-27 15:32:18

标签: mysql convert-tz

寻找一种从MySQL数据库查询数据的方法&将其写入输出txt文件。我试图从远程Windows框中查询Linux服务器数据库。

MySQL查询:

mysql -u XXX -pXXX -h ttplxapp-esm01.abc.com -D telalert -e "select max(convert_tz(start_time,\"+00:00\",\"-04:00\")) AS Time,group_concat(username SEPARATOR \" \") AS Contact, message AS Message from sends where convert_tz(start_time,\"+00:00\",\"-4:00\") like \"$query_date%\" group by alert_id order by Time desc ;" 

java脚本或脚本将是理想的。

1 个答案:

答案 0 :(得分:2)

使用SELECT...FROM子句尝试INTO OUTFILE语句。

SELECT Syntax