You can use concatenation and char values to add tabs or carriage returns to reformat output. char(10) converts to a return; char(9) converts to a tab.
/* just a space */ select title_id + " " + title from titles where title_id = "T67061" /* a return */ select title_id + char(10) + title from titles where title_id = "T67061" /* a tab */ select title_id + char(9) + title from titles where title_id = "T67061"
----------------------------------------------------------------------- T67061 Programming with Curses ----------------------------------------------------------------------- T67061 Programming with Curses ----------------------------------------------------------------------- T67061 Programming with Curses