sqlite3 is chopping/cutting/truncating my text columns

后端 未结 5 1370
太阳男子
太阳男子 2020-12-30 20:47

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         


        
5条回答
  •  死守一世寂寞
    2020-12-30 21:04

    There doesn't appear to be a way to make it automatic, but you can use the .width command to manually specify the column widths.

    See here (search the section for .width).

提交回复
热议问题