Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/awscli/examples/athena/list-query-executions.rst
1567 views
**To list the query IDs of the queries in a specified workgroup**

The following ``list-query-executions`` example lists a maximum of ten of the query IDs in the ``AthenaAdmin`` workgroup. ::

    aws athena list-query-executions \
        --work-group AthenaAdmin \
        --max-items 10

Output::

    {
        "QueryExecutionIds": [
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11110",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE33333",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11114",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11115",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11116",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11117",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11118",
            "a1b2c3d4-5678-90ab-cdef-EXAMPLE11119"
        ],
        "NextToken": "eyJOZXh0VG9rZW4iOiBudWxsLCAiYm90b190cnVuY2F0ZV9hbW91bnQiOiAxMH0="
    }

For more information, see `Working with Query Results, Output Files, and Query History <https://docs.aws.amazon.com/athena/latest/ug/querying.html>`__ in the *Amazon Athena User Guide*.