跳转到主要内容
跳转到主要内容

Vertical

输入输出别名

描述

打印每个值,每行一个值,并指定列名。如果每行由大量列组成,则此格式便于仅打印一行或几行。 NULL 输出为 ᴺᵁᴸᴸ

示例用法

示例

SELECT * FROM t_null FORMAT Vertical
Row 1:
──────
x: 1
y: ᴺᵁᴸᴸ

行在 Vertical 格式中未转义

SELECT 'string with \'quotes\' and \t with some special \n characters' AS test FORMAT Vertical
Row 1:
──────
test: string with 'quotes' and with some special
characters

此格式仅适用于输出查询结果,但不适用于解析(检索数据以插入到表中)。

格式设置