结构体类型

适用于:检查标记是的砖的SQL检查标记是的砖运行时

代表值和描述的结构序列字段。

语法

STRUCT <(字段名[:]fieldType [NOT NULL][评论str] […]] >
  • 字段名:一个标识符命名。不需要独特的名字。

  • fieldType:任何数据类型。

  • :当指定结构保证这个领域从来都不是空的价值。

  • 评论str:一个可选的字符串文字描述。

限制

支持任意数量的字段类型大于或等于0。

文字

看到结构函数named_struct函数有关如何制作文字数组值。

例子

>选择结构(“火花”,5);{火花,5}>选择typeof (named_struct (“Field1”、“火花”,“Field2”, 5));struct < Field1:字符串,Field2: int > >选择typeof (struct(“火花”,5));struct < col1:字符串、col2: int > >选择typeof (CAST (NULL作为struct < Field1: int NOT NULL第一个字段。发表评论,Field2:数组< int > >));struct < Field1: int, Field2:数组< int > >