All Products
Search
Document Center

Tablestore:Data operations

Last Updated:Jun 10, 2026

Write, read, and delete data in Tablestore tables using the Go SDK. Supports filters, conditional updates, atomic counters, and local transactions.

Operation

Description

Write data

Insert or update a single row, or batch-write multiple rows.

Read data

Read a single row, batch-read multiple rows, or scan a primary key range.

Delete data

Delete a single row or batch-delete multiple rows.

Filters

Apply server-side filters to return only rows that match specified conditions.

Conditional update

Update rows only when specified conditions are met. Unmet conditions return an error.

Atomic counter

Use a column as an atomic counter and perform atomic operations on it.

Local transaction

Enable local transactions on a table, then create a transaction scoped to a partition key. Read and write data within the transaction, then commit or abort it.