Sqlite

sqlite3 - table_info 看起來很亂

  • May 9, 2018

我使用 Suse 上的命令行二進製文件創建了一個新數據庫。通過使用.headers ON它來啟動標題後,在獲取表資訊時仍然看起來很亂PRAGMA table_info(TABLE1);

cid|name|type|notnull|dflt_value|pk
0|COLUMN1|REAL|1||0

我怎樣才能達到這樣的清潔效果:

sqlite> pragma table_info(member);
cid      name          type     notnull  dflt_value  pk     
-------  ------------  -------  -------  ----------  -------
0        account_id    text     1                    0      
1        account_name  text     1                    0      

sqlite3命令行 shell 中,可以使用 選擇此輸出格式.mode column

引用自:https://dba.stackexchange.com/questions/206153