# SHOW JOB EXECUTIONS FOR

Shows the runs (executions) for the job with the specified ID within the specified range.

## Syntax

```
SHOW JOB EXECUTIONS FOR '<job_ID>' 
    FROM <limit> 
    TO <limit> 
    [ EXTENDED ]
```

## Arguments

* `job_ID`: ID of the job.
* `limit`: An integer that specifies the execution number to start from or end at.

## Remarks

* Specify `EXTENDED` to return more information on the job runs.
* Specify the execution number to start from and end at using the `FROM` and `TO` clauses, respectively.

## Example

The following command shows extended information on the executions for the job with ID **62c230ea-0000-1000-9000-c08a7a3fd6c0** from execution number `1` to `10`.

```sql
SHOW JOB EXECUTIONS FOR '62c230ea-0000-1000-9000-c08a7a3fd6c0'
   FROM 1 TO 10
   EXTENDED;
```

***

Modified at: August 13, 2025

Source: [/cloud/reference/fusion-sql/show-job-executions-for/](https://docs.singlestore.com/cloud/reference/fusion-sql/show-job-executions-for/)

(An index of the documentation is available at /llms.txt)
