mysql html出力を使用し、個別のデータブロックに結果を表示する別の方法
mysql --html -b information_schema -e 'select COLUMN_NAME, TABLE_NAME from columns LIMIT 5;' >> sql.xlsx
echo '<hr>' >> sql.xlsx
mysql --html -b information_schema -e 'select COLUMN_NAME, TABLE_NAME from columns LIMIT 100,3;' >> sql.xlsx
Excelで開くと、次のようになります