This query is similar to term query. However, terms query supports multiple terms. This query is also similar to the SQL IN operator. A row of data is returned if one of the keywords matches field values. Terms query is equivalent to the IN operator in SQL statements.
Prerequisites
- The OTSClient instance is initialized. For more information, see Initialization.
- A data table is created and data is written to the table.
- A search index is created for the table. For more information, see Create search indexes.
Parameters
Parameter | Description |
---|---|
tableName | The name of the table. |
indexName | The name of the search index. |
offset | The position from which the current query starts. |
limit | The maximum number of rows that the current query returns.
To query only the number of matched rows but not detailed data, you can set limit to 0. In this case, Tablestore returns the number of matched rows without data from the table. |
queryType | The query type. To use terms query, set this parameter to TableStore.QueryType.TERMS_QUERY. |
fieldName | The name of the field used to match the query conditions. |
terms | The keywords used in the query to match the column values.
A row meets the query conditions when the value of the specified column exactly matches at least one keyword. |
getTotalCount | Specifies whether to return the total number of rows that match the query conditions.
By default, this parameter is set to false, which indicates that the total number
of rows that match the query conditions is not returned.
Query performance is affected when this parameter is set to True. |
columnToGet | Specifies whether to return all columns of each matched row. You can configure returnType
and returnNames for this parameter.
|
Examples
/**
* Search the table for rows where the value of Col_Keyword exactly matches "hangzhou" or "shanghai".
* TermsQuery supports multiple terms. You can retrieve query results that match any of these terms.
*/
client.search({
tableName: TABLE_NAME,
indexName: INDEX_NAME,
searchQuery: {
offset: 0,
limit: 10, // You can set limit to 0 if you do not need the specific data but the number of matched rows. A valve of 0 indicates that no data is returned.
query: { // Set the query type to TableStore.QueryType.TERMS_QUERY.
queryType: TableStore.QueryType.TERMS_QUERY,
query: {
fieldName: "Col_Keyword",
terms: ["hangzhou", "shanghai"]
}
},
getTotalCount: true // The value of TotalCount indicates the number of rows that match the query conditions. By default, TotalCount is set to false, which indicates that the total number of matched rows is not returned. Set TotalCount to true in this example.
},
columnToGet: { // You can set RETURN_SPECIFIED to return the specified columns, RETURN_ALL to return all columns, or RETURN_NONE to return no attribute columns from the table.
returnType: TableStore.ColumnReturnType.RETURN_ALL
}
}, function (err, data) {
if (err) {
console.log('error:', err);
return;
}
console.log('success:', JSON.stringify(data, null, 2));
});