HEX
Server: LiteSpeed
System: Linux ip-172-31-76-142.ec2.internal 4.14.158-129.185.amzn2.x86_64 #1 SMP Tue Dec 24 03:15:32 UTC 2019 x86_64
User: 69b4844ae61d4e92bf26ad98af552775 (1065)
PHP: 7.2.27
Disabled: exec,passthru,shell_exec,system,eval
Upload Files
File: //lib/python2.7/site-packages/awscli/examples/rds-data/execute-statement.rst
**Example 1: To execute a SQL statement that is part of a transaction**

The following ``execute-statement`` example runs a SQL statement that is part of a transaction. ::

    aws rds-data execute-statement \
        --resource-arn "arn:aws:rds:us-west-2:123456789012:cluster:mydbcluster" \
        --database "mydb" \
        --secret-arn "arn:aws:secretsmanager:us-west-2:123456789012:secret:mysecret" \
        --sql "update mytable set quantity=5 where id=201" \
        --transaction-id "ABC1234567890xyz"

Output::

    {
        "numberOfRecordsUpdated": 1
    }

**Example 2: To execute a SQL statement with parameters**

The following ``execute-statement`` example runs a SQL statement with parameters. ::

    aws rds-data execute-statement \
        --resource-arn "arn:aws:rds:us-east-1:123456789012:cluster:mydbcluster" \
        --database "mydb" \
        --secret-arn "arn:aws:secretsmanager:us-east-1:123456789012:secret:mysecret" \
        --sql "insert into mytable values (:id, :val)" \
        --parameters "[{\"name\": \"id\", \"value\": {\"longValue\": 1}},{\"name\": \"val\", \"value\": {\"stringValue\": \"value1\"}}]"

Output::

    {
        "numberOfRecordsUpdated": 1
    }

For more information, see `Using the Data API for Aurora Serverless <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html>`__ in the *Amazon RDS User Guide*.