I have values being cut off and would like to display the full values.
Sqlite3 -column -header locations.dbs \"
select n.namelist, f.state, t.state
from name
Here is another way to format several tables and show the rowid in a nice format.
#/usr/bin/env bash
cli_opts="-header"
for table in "table1" "table2"; do
select="select rowid as ' ', * from $table;"
#echo "$select"
echo "$table"
sqlite3 $cli_opts database.db "$select" | column -t -s "|"
echo -e '\n'
done