Mysql執行批量sql時的格式問題

psufnxk2000發表於2015-03-24
Mysql執行批量sql時的格式問題:
mysql執行批量sql時,輸出格式想和在mysql提示符下一致的話,使用-t 選項
-t, --table         Output in table format.
例:

沒有使用-t的樣式:
[mysql@localhost tmp]$ mysql -u root -p < /home/mysql/select_tt.txt | less 
Enter password: 
id idd 
99999 99999 
2147483647 2147483647 
123456 123456
使用-t的樣式 :
[mysql@localhost ~]$ mysql -t -u root -p < /home/mysql/select_tt.txt | less 
Enter password: 
+------------+------------+ 
| id | idd | 
+------------+------------+ 
| 99999 | 99999 | 
| 2147483647 | 2147483647 | 
| 123456 | 123456 | 
+------------+------------+

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25099483/viewspace-1472239/,如需轉載,請註明出處,否則將追究法律責任。

相關文章