我正在学习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;
答案 0 :(得分:3)
如果还有任何用处:
.print ''
将在输出中打印一个新行。
答案 1 :(得分:2)
尝试
select '';
单独在一条线上。
答案 2 :(得分:0)
在sqlite3 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.