Horizontal Scrolling for MySQL queries in Linux
Everyone who works with databases on a linux terminal faces this issue at some point in time — executing select * on a table with too many columns. And in linux since there is no horizontal scrolling, the output is wrapped and hence completely unusable.
You can use
--pager
property to get rid of that text wrap.
Read the rest of this entry »