2011-12-08 11 views
2

私はsqlite3を学んでいます。 2つのテーブルの間にセパレータを挿入したいのですが、どうすればいいですか?sqlite3で改行を印刷するには

-- show Table [exam]                     
SELECT * from exam; 

-- here I wanna print a newline as separator 
-- how to do this? 

-- show Table [examlog]                    
SELECT * from examlog; 

答えて

2

は単独行に

select ''; 

を試してみてください。

+0

ありがとう、それはworkds。 – CCC

0

3.7.16新しいcore functionsがあります。 CHAR()で任意の文字を書くことができます。

char(X1,X2,...,XN) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively.

2

それはあらゆる使用のまだだ場合:

.print '' 

は、出力に改行を出力します。

関連する問題