By default, when you connect to the SQLite command line shell and run a query, the result is returned as a pipe separated list.
You might have noticed that the results don’t include the column names, which can make your results confusing if you’re trying to read them, especially if the query returned many columns.
Fortunately, there’s an easy way to format the output so that it’s displayed as a column with column headers.
Continue reading