0
我試圖從sqlite3數據庫中的表中顯示結果。我試過.mode列和「.header on」,但它顯示的方式並不好。 這是輸出。任何人都可以讓我知道如何解決這個問題?在sqlite3中沒有以正確的順序顯示結果
<pre>
sqlite> .mode columns
sqlite> SELECT * FROM pets;
_id name breed gender weight ␞---------- ---------- ---------- ---------- ----------␞1 Tommy Pomeranian 1 4 ␞2 Garfield Tabby 1 14 ␞3 Binx Bombay 1 6 ␞4 Binx Bombay 1 6 ␞sqlite>
</pre>