通過select語句查詢表中資料。

说明 關於select語句的更多資訊,請參見查詢資料

前提條件

參數

參數 說明
query SQL語句,請根據所需功能進行設定。

樣本

使用select pk, long_value, double_value, string_value, bool_value from test_table limit 20語句查詢test_table表中資料且最多返回20行資料。系統會返回查詢語句的請求類型、傳回值Schema、返回結果等資訊。

func queryData(client *tablestore.TableStoreClient) {
    // 建立SQL請求。
    request := &tablestore.SQLQueryRequest{Query: "select pk, long_value, double_value, string_value, bool_value from test_table limit 20"}

    // 擷取SQL的響應結果。
    response, err := client.SQLQuery(request)
    if err != nil {
        panic(err)
    }

    // 擷取SQL的請求類型。
    fmt.Printf("response type: %v\n", response.StmtType)

    // 擷取SQL傳回值的Schema。
    columns := response.ResultSet.Columns()
    fmt.Printf("response table meta: %v\n", columns)

    // 擷取SQL的返回結果。
    resultSet := response.ResultSet
    fmt.Println("response resultset:")
    for resultSet.HasNext() {
        row := resultSet.Next()
        stringValue, _ := row.GetString(0)
        fmt.Printf("%v, ", stringValue)
        stringValue, _ = row.GetStringByName("pk")
        fmt.Printf("%v, ", stringValue)
        longValue, _ := row.GetFloat64(1)
        fmt.Printf("%v, ", longValue)
        longValue, _ = row.GetFloat64ByName("long_value")
        fmt.Printf("%v, ", longValue)
        floatValue, _ := row.GetFloat64(2)
        fmt.Printf("%v, ", floatValue)
        floatValue, _ = row.GetFloat64ByName("double_value")
        fmt.Printf("%v, ", floatValue)
        stringValue, _ = row.GetString(3)
        fmt.Printf("%v, ", stringValue)
        stringValue, _ = row.GetStringByName("string_value")
        fmt.Printf("%v, ", stringValue)
        boolValue, _ := row.GetBool(4)
        fmt.Printf("%v, ", boolValue)
        boolValue, _ = row.GetBoolByName("bool_value")
        fmt.Printf("%v\n", boolValue)
    }
}

返回結果樣本如下:

response type: SQL_SELECT
response table meta: [pk:STRING long_value:INTEGER double_value:DOUBLE string_value:STRING bool_value:BOOLEAN]
response resultset:
binary_null, binary_null, 0, 0, 1, 1, a, a, false, false
bool_null, bool_null, 0, 0, 1, 1, a, a, false, false
double_null, double_null, 0, 0, 1, 1, a, a, false, false
long_null, long_null, 0, 0, 1, 1, a, a, false, false
string_null, string_null, 0, 0, 1, 1, , , false, false