每次显示一个页面
select出来的结果集超过几个屏幕,那么前面的结果一晃而过无法看到,
pager less相当于less查看大文件的效果
pager less
或者\P less
结束 nopager
保存到文件
mysql> tee output.txt
Logging to file ‘output.txt’
或者
mysql> \T output.txt
Logging to file ‘output.txt’
mysql> notee
Outfile disabled.
或者
mysql> \t
Outfile disabled.
执行OS命令
mysql> system uname
Linux
mysql> ! uname
Linux
执行SQL文件
mysql> source test.sql
或者
mysql> . test.sql
其他还有一些功能,可以通过help或者?获得MySQL命令行支持的一些命令。
