日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

查詢索引描述信息

更新時(shí)間:

通過show index語句查詢表的索引描述信息,例如索引名稱、索引字段、索引類型等。

說明

關(guān)于show index語句的更多信息,請參見查詢索引描述信息

前提條件

注意事項(xiàng)

表格存儲Java SDK5.13.0版本開始支持SQL查詢功能。使用SQL查詢功能時(shí),請確保獲取了正確的表格存儲Java SDK版本。關(guān)于Java SDK歷史迭代版本的更多信息,請參見Java SDK歷史迭代版本

參數(shù)

參數(shù)

說明

query

SQL語句,請根據(jù)所需功能進(jìn)行設(shè)置。

示例

以下示例用于使用show index in test_table語句查詢test_table表的索引描述信息。

private static void showIndexDemo(SyncClient client) {
    // 創(chuàng)建SQL請求。
    SQLQueryRequest request = new SQLQueryRequest("show index in test_table");

    // 獲取SQL的響應(yīng)結(jié)果。
    SQLQueryResponse response = client.sqlQuery(request);

    // 獲取SQL返回值的Schema。
    SQLTableMeta tableMeta = response.getSQLResultSet().getSQLTableMeta();
    System.out.println("response table schema: " + tableMeta.getSchema());

    // 通過SQL ResultSet遍歷獲取SQL的返回結(jié)果。
    System.out.println("response resultset:");
    SQLResultSet resultSet = response.getSQLResultSet();
    while (resultSet.hasNext()) {
        SQLRow row = resultSet.next();
        System.out.println(row.getString("Table") + ", " + row.getLong("Non_unique") + ", " +
                           row.getString("Key_name") + ", " + row.getLong("Seq_in_index") + ", " +
                           row.getString("Column_name") + ", " + row.getString("Index_type") );
    }
}

返回結(jié)果示例如下:

response table schema: [Table:STRING, Non_unique:INTEGER, Key_name:STRING, Seq_in_index:INTEGER, Column_name:STRING, Is_defined_column: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

相關(guān)文檔

  • 如果在通過SQL查詢數(shù)據(jù)時(shí)要使用指定的多元索引進(jìn)行查詢,您可以通過CREATE TABLE語句創(chuàng)建多元索引的映射關(guān)系實(shí)現(xiàn)。更多信息,請參見創(chuàng)建多元索引的映射關(guān)系

  • 您可以使用SQL根據(jù)查詢到的字段進(jìn)行數(shù)據(jù)查詢。更多信息,請參見查詢數(shù)據(jù)