Sqsh console interface for accessing sql server

I’m using sqsh to connect MS SQL Server database. When I use a SELECT query my console getting quite ugly. Is there any way to make outputs as mysql console?

You can get similar output (but not as good as mysql client does) with pretty parameter of go command in sqsh prompt like that:

> go -m pretty

If you want to make this behaviour as default, you can declare an alias for go command in your ~/.sqshrc file as below:

\alias go='\go -m pretty'

After that, all the go commands works with the -m pretty option.