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: Query Items
- DynamoDB Get in Typescript
- DynamoDB: Bulk Insert
- DynamoDB: Query Global Secondary Index in Nodejs
- DynamoDB: Query Ends With
- DynamoDB: Query Group By
- DynamoDB: GetItem
- DynamoDB: Create if Not Exists
- DynamoDB: Get Unique Values
- DynamoDB: Query JSON
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Delete Table
- DynamoDB: Increment Counter
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Like
Dynobase is a Professional GUI Client for DynamoDB
Start your 7-day free trial today
Product Features
DynamoDB Tools
DynamoDB Info
© 2026 Dynobase