通過show index語句查詢表的索引描述資訊,例如索引名稱、索引欄位、索引類型等。
說明
關於show index語句的更多資訊,請參見查詢索引描述資訊。
前提條件
已初始化Client。具體操作,請參見初始化OTSClient。
已建立映射關係。具體操作,請參見建立表的映射關係。
注意事項
Table StoreJava SDK從5.13.0版本開始支援SQL查詢功能。使用SQL查詢功能時,請確保擷取了正確的Table StoreJava SDK版本。關於Java SDK歷史迭代版本的更多資訊,請參見Java SDK歷史迭代版本。
參數
參數 | 說明 |
query | SQL語句,請根據所需功能進行設定。 |
樣本
以下樣本用於使用show index in test_table
語句查詢test_table表的索引描述資訊。
private static void showIndexDemo(SyncClient client) {
// 建立SQL請求。
SQLQueryRequest request = new SQLQueryRequest("show index in test_table");
// 擷取SQL的響應結果。
SQLQueryResponse response = client.sqlQuery(request);
// 擷取SQL傳回值的Schema。
SQLTableMeta tableMeta = response.getSQLResultSet().getSQLTableMeta();
System.out.println("response table schema: " + tableMeta.getSchema());
// 通過SQL ResultSet遍曆擷取SQL的返回結果。
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") );
}
}
返回結果樣本如下:
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
相關文檔
如果在通過SQL查詢資料時要使用指定的多元索引進行查詢,您可以通過
CREATE TABLE
語句建立多元索引的映射關係實現。更多資訊,請參見建立多元索引的映射關係。您可以使用SQL根據查詢到的欄位進行資料查詢。更多資訊,請參見查詢資料。