TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/TracingInsights/RaceData/llms.txt
Use this file to discover all available pages before exploring further.
sprint_results.csv table contains results from Formula 1 sprint races, a shorter race format introduced in 2021 that determines the grid for the main Grand Prix.
Schema
| Field | Type | Description |
|---|---|---|
resultId | integer | Unique identifier for each sprint result |
raceId | integer | Foreign key to races.csv |
driverId | integer | Foreign key to drivers.csv |
constructorId | integer | Foreign key to constructors.csv |
number | integer | Driver’s car number |
grid | integer | Starting grid position for the sprint |
position | integer | Finishing position (null if DNF) |
positionText | string | Text representation of finish position |
positionOrder | integer | Numerical order of finish |
points | float | Points scored in the sprint race |
laps | integer | Number of laps completed |
time | string | Total sprint race time (for finishers) |
milliseconds | integer | Total sprint race time in milliseconds |
fastestLap | integer | Lap number of fastest lap |
fastestLapTime | string | Fastest lap time (MM:SS.mmm format) |
statusId | integer | Foreign key to status.csv (finish/retirement reason) |
rank | integer | Rank of fastest lap among all drivers |
Sample Data
| resultId | raceId | driverId | constructorId | grid | position | points | laps | time |
|---|---|---|---|---|---|---|---|---|
| 1 | 1061 | 830 | 9 | 2 | 1 | 3 | 17 | 25:38.426 |
| 2 | 1061 | 1 | 131 | 1 | 2 | 2 | 17 | +1.430 |
| 3 | 1061 | 822 | 131 | 3 | 3 | 1 | 17 | +7.502 |
| 4 | 1061 | 844 | 6 | 4 | 4 | 0 | 17 | +11.278 |
Relationships
References:
sprint_results.raceId→races.raceIdsprint_results.driverId→drivers.driverIdsprint_results.constructorId→constructors.constructorIdsprint_results.statusId→status.statusId
Dataset Statistics
- Total Records: 480 sprint results
- First Sprint Race: 2021 British Grand Prix
- Sprint Races per Season: Varies (typically 3-6 per season)
Sprint Race Format
Sprint races are shorter races (typically 100km or ~30 minutes) held on Saturday:- 2021-2022: Top 3 scored points (3-2-1)
- 2023 onwards: Top 8 score points (8-7-6-5-4-3-2-1)
- Sprint results determine the starting grid for Sunday’s Grand Prix
- Usually 17-23 laps depending on the circuit
Example Queries
Get all sprint race winners
Find sprint races for a specific season
Analyze points scored in sprints
Compare sprint grid vs finish positions
Get sprint podiums for a driver
Join with main race results
Notes
- Sprint races are typically 100km in distance (about 1/3 of a Grand Prix)
- The sprint qualifying format has evolved since its introduction
- Sprint results determine the starting grid for the main Grand Prix
- Points allocation changed from 3-2-1 (2021-2022) to 8-7-6-5-4-3-2-1 (2023+)
- Not all races in a season have sprint format
\Nrepresents null values for DNF and missing data- Sprint races don’t count towards statistics like race wins or podiums in official records
