DESCRIBE SEARCH OPTIMIZATION

描述指定表及其列的 搜索优化配置

DESCRIBE 可以缩写为 DESC。

另请参阅:

Search optimization service

语法

DESC[RIBE] SEARCH OPTIMIZATION ON <table_name>;
Copy

参数

table_name

指定要描述的表的标识符。如果标识符包含空格或特殊字符,则整个字符串必须放在双引号内。放在双引号内的标识符也区分大小写。

输出

该命令会打印一个表,其中包含有关搜索优化配置中各搜索方法和目标的信息。此表包含以下列:

列名称

描述

expression_id

搜索方法和目标的唯一标识符。

method

用于针对特定谓词类型优化查询的搜索方法:

  • EQUALITY(用于等式和 IN 谓词)。

  • SUBSTRING(用于匹配子字符串的谓词 – 例如 LIKE、ILIKE 等)。

  • GEO(用于使用 GEOGRAPHY 类型的谓词)。

target

应用该方法的列或 VARIANT 字段。

target_data_type

列或 VARIANT 字段的数据类型。

active

指定表达式是否已完成表达式搜索访问路径的初始构建。

使用说明

  • To post-process the output of this command, you can use the pipe operator (->>) or the RESULT_SCAN function. Both constructs treat the output as a result set that you can query.

    The output column names for this command are generated in lowercase. If you consume a result set from this command with the pipe operator or the RESULT_SCAN function, use double-quoted identifiers for the column names in the query to ensure that they match the column names in the output that was scanned. For example, if the name of an output column is type, then specify "type" for the identifier.

示例

请参阅 显示表的搜索优化配置

语言: 中文