Executes an SQL statement, returning all results in a single reply. This method cannot be used to return a result set larger than 10 MiB; if the query yields more data than that, the query fails with a FAILED_PRECONDITION
error.
Operations inside read-write transactions might return ABORTED
. If this occurs, the application should restart the transaction from the beginning. See Transaction
for more details.
Larger result sets can be fetched in streaming fashion by calling sessions.executeStreamingSql
instead.
HTTP request
POST https://spanner.googleapis.com/v1/{session=projects/*/instances/*/databases/*/sessions/*}:executeSql
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
session |
Required. The session in which the SQL query should be performed. Authorization requires the following IAM permission on the specified resource
|
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "transaction": { object ( |
Fields | |
---|---|
transaction |
The transaction to use. For queries, if none is provided, the default is a temporary read-only transaction with strong concurrency. Standard DML statements require a read-write transaction. To protect against replays, single-use transactions are not supported. The caller must either supply an existing transaction ID or begin a new transaction. Partitioned DML requires an existing Partitioned DML transaction ID. |
sql |
Required. The SQL string. |
params |
Parameter names and values that bind to placeholders in the SQL string. A parameter placeholder consists of the Parameters can appear anywhere that a literal value is expected. The same parameter name can be used more than once, for example:
It is an error to execute a SQL statement with unbound parameters. |
param |
It is not always possible for Cloud Spanner to infer the right SQL type from a JSON value. For example, values of type In these cases, |
resume |
If this request is resuming a previously interrupted SQL statement execution, A base64-encoded string. |
query |
Used to control the amount of debugging information returned in |
partition |
If present, results will be restricted to the specified partition previously created using sessions.partitionQuery(). There must be an exact match for the values of fields common to this message and the PartitionQueryRequest message used to create this partitionToken. A base64-encoded string. |
seqno |
A per-transaction sequence number used to identify this request. This field makes each request idempotent such that if the request is received multiple times, at most one will succeed. The sequence number must be monotonically increasing within the transaction. If a request arrives for the first time with an out-of-order sequence number, the transaction may be aborted. Replays of previously handled requests will yield the same response as the first execution. Required for DML statements. Ignored for queries. |
query |
Query optimizer configuration to use for the given query. |
request |
Common options for this request. |
directed |
Directed read options for this request. |
data |
If this is for a partitioned query and this field is set to If the field is set to |
Response body
If successful, the response body contains an instance of ResultSet
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/spanner.data
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.