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: GetItem
- DynamoDB: Create if Not Exists
- DynamoDB: Attribute Not Null
- DynamoDB: Get Unique Values
- DynamoDB: Batch Get
- DynamoDB: Delete Table
- DynamoDB: Query Count
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Get Random Item
- DynamoDB Get in Typescript
- DynamoDB: Get Query
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Not Begins With
- DynamoDB: Get Table
Better DynamoDB experience.
First 7 days are. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2024 Dynobase