Data operations
Write, read, and delete data in Tablestore tables using the Go SDK. Supports filters, conditional updates, atomic counters, and local transactions.
|
Operation |
Description |
|
Insert or update a single row, or batch-write multiple rows. |
|
|
Read a single row, batch-read multiple rows, or scan a primary key range. |
|
|
Delete a single row or batch-delete multiple rows. |
|
|
Apply server-side filters to return only rows that match specified conditions. |
|
|
Update rows only when specified conditions are met. Unmet conditions return an error. |
|
|
Use a column as an atomic counter and perform atomic operations on it. |
|
|
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. |