mysqlクエリー結果をxmlとhtmlにエクスポート

479 ワード

mysqlコマンドでクエリー結果をxmlとhtmlにエクスポートするのは便利です.
$mysql --help|grep -E  'xml|html'   -H, --html          Produce HTML output.
  -X, --xml           Produce XML output.
html                              FALSE
xml                               FALSE
$mysql -uroot -p  --html -e 'select user,password from mysql.user'>user.html


$mysql -uroot -p  --xml -e 'select user,password from mysql.user'>user.xml