DynamoDB: Query Count (Guide w/ Code Examples)

Provided by Rafal Wilinski
To query the count of items in a DynamoDB table using the JavaScript SDK, you can use the query
operation and set the Select
parameter to COUNT
.
var params = { TableName: "myTable", Select: "COUNT" }; dynamodb.query(params, function(err, data) { if (err) { console.log("Error", err); } else { console.log("Success", data.Count); } });
Similar Code Examples
- DynamoDB: Delete
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Get Multiple Items
- DynamoDB: Query Greater Than
- DynamoDB: Get Random Item
- DynamoDB: Query Global Secondary Index in Nodejs
- DynamoDB: Query Ends With
- DynamoDB Get in Typescript
- DynamoDB: BatchGetItem
- DynamoDB: Batch Get
- DynamoDB: Get Last 10 Records
- DynamoDB: Like
- DynamoDB: GetItem
- DynamoDB: Query JSON
- DynamoDB: Attribute Not Null
Spend less time in the AWS console, use Dynobase.
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase