DynamoDB: Query Greater Than (Guide w/ Code Examples)
Provided by Rafal Wilinski
To query a DynamoDB table using the JavaScript SDK and retrieve items where a specific attribute has a value greater than a certain value, you can use the query
operation and pass in an object containing the necessary parameters.
const AWS = require('aws-sdk'); const dynamoDb = new AWS.DynamoDB.DocumentClient(); const params = { TableName: 'myTable', KeyConditionExpression: '#id > :value', ExpressionAttributeNames: { '#id': 'id', }, ExpressionAttributeValues: { ':value': 5 } }; dynamoDb.query(params, (error, data) => { if (error) { console.log(error); } else { console.log(data.Items); } });
Similar Code Examples
- DynamoDB: Get Table
- DynamoDB: Get By ID
- DynamoDB: Query KeyConditionExpression
- DynamoDB: GetItem
- DynamoDB: Query JSON
- DynamoDB: Increment Counter
- DynamoDB: Create if Not Exists
- DynamoDB: BatchGetItem
- DynamoDB: Not Between
- DynamoDB: Delete
- DynamoDB: Get Multiple Items
- DynamoDB: Get All Items
- DynamoDB: Not Begins With
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Query Ends With
Tired of switching accounts and regions? Use Dynobase.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase