すべてのプロダクト
Search
ドキュメントセンター

Tablestore:テーブルのインデックス情報をクエリする

最終更新日:Dec 28, 2024

show index ステートメントを実行して、インデックス名、インデックスフィールド、インデックスタイプなど、テーブルのインデックス情報をクエリできます。

説明

show index ステートメントの詳細については、テーブルのインデックス情報をクエリするを参照してください。

前提条件

パラメーター

パラメーター

説明

query

SQL ステートメント。必要な機能に基づいてパラメーターを構成します。

次のサンプルコードは、show index in test_table ステートメントを実行して、test_table という名前のテーブルのインデックス情報をクエリする方法の例を示しています。

func showIndex(client *tablestore.TableStoreClient) {
    // SQLリクエストを作成します。
    request := &tablestore.SQLQueryRequest{Query: "show index in test_table"}

    // SQLリクエストへのレスポンスを取得します。
    response, err := client.SQLQuery(request)
    if err != nil {
        panic(err)
    }

    // SQLリクエストの戻り結果のスキーマを取得します。
    columns := response.ResultSet.Columns()
    fmt.Printf("response table schema:[")
    for l := 0; l < len(columns); l++ {
        fmt.Printf("%v:%v ", columns[l].Name, columns[l].Type.String())
    }

    // SQL ResultSet を使用して、SQLリクエストのすべての戻り結果を取得します。
    fmt.Println("]\nresponse resultset:")
    resultSet := response.ResultSet
    for resultSet.HasNext() {
        row := resultSet.Next()
        tableName, _ := row.GetStringByName("Table")
        fmt.Printf("%v, ", tableName)
        nonUnique, _ := row.GetInt64ByName("Non_unique")
        fmt.Printf("%v, ", nonUnique)
        keyName, _ := row.GetStringByName("Key_name")
        fmt.Printf("%v, ", keyName)
        seqInIndex, _ := row.GetInt64ByName("Seq_in_index")
        fmt.Printf("%v, ", seqInIndex)
        columnName, _ := row.GetStringByName("Column_name")
        fmt.Printf("%v, ", columnName)
        indexType, _ := row.GetStringByName("Index_type")
        fmt.Printf("%v\n", indexType)
    }
}

レスポンス例:

response table schema: [Table:STRING Non_unique:INTEGER Key_name:STRING Seq_in_index:INTEGER Column_name:STRING Is_defined_column:STRING Search_type:STRING Collation:STRING Cardinality:INTEGER Sub_part:INTEGER Packed:STRING Null:STRING Index_type:STRING Comment:STRING Index_comment:STRING Visible:STRING Expression:STRING]
response resultset:
test_table, 0, PRIMARY, 1, pk,
test_table, 1, test_table_index, 1, pk, SearchIndex
test_table, 1, test_table_index, 2, bool_value, SearchIndex
test_table, 1, test_table_index, 3, double_value, SearchIndex
test_table, 1, test_table_index, 4, long_value, SearchIndex
test_table, 1, test_table_index, 5, string_value, SearchIndex

参照

  • SQL クエリ機能を使用する際に特定の検索インデックスを使用してデータをクエリする場合、CREATE TABLE ステートメントを実行して、検索インデックスのマッピングテーブルを作成できます。詳細については、検索インデックスのマッピングテーブルを作成するを参照してください。

  • SQL ステートメントを実行して、インデックスのフィールドに基づいてデータをクエリできます。詳細については、データのクエリを参照してください。