question stringclasses 9 values | reference_table listlengths 1 2 |
|---|---|
What are all the details of the events scheduled in the 'schedules' table? | [
{
"columns": [
{
"column_name": "start_date"
},
{
"column_name": "end_date"
},
{
"column_name": "day"
},
{
"column_name": "status"
},
{
"column_name": "discipline"
},
{
"column_name": "discipline_co... |
How many teams are currently active in the Olympic Summer Games, grouped by their gender category, and sorted by the number of teams in each category? | [
{
"columns": [
{
"column_name": "current"
},
{
"column_name": "team_gender"
},
{
"column_name": "team"
}
],
"table_name": "teams"
}
] |
How many medals were awarded to male athletes in each sport discipline at the Paris 2024 Olympic Summer Games, and what is the total count for each discipline? | [
{
"columns": [
{
"column_name": "medal_type"
},
{
"column_name": "gender"
},
{
"column_name": "discipline"
}
],
"table_name": "medallists"
}
] |
What information can you retrieve about all coaches from the coaches table? | [
{
"columns": [
{
"column_name": "code"
},
{
"column_name": "current"
},
{
"column_name": "name"
},
{
"column_name": "gender"
},
{
"column_name": "function"
},
{
"column_name": "category"
},
... |
What are the details of all medal holders from the Paris 2024 Olympic Summer Games? | [
{
"columns": [
{
"column_name": "medal_type"
},
{
"column_name": "medal_code"
},
{
"column_name": "medal_date"
},
{
"column_name": "name"
},
{
"column_name": "gender"
},
{
"column_name": "discipline... |
What are all the details of the events scheduled in the 'schedules' table? | [
{
"columns": [
{
"column_name": "start_date"
},
{
"column_name": "end_date"
},
{
"column_name": "day"
},
{
"column_name": "status"
},
{
"column_name": "discipline"
},
{
"column_name": "discipline_co... |
What are the details of all coaches participating in the Paris 2024 Olympic Summer Games? | [
{
"columns": [
{
"column_name": "code"
},
{
"column_name": "current"
},
{
"column_name": "name"
},
{
"column_name": "gender"
},
{
"column_name": "function"
},
{
"column_name": "category"
},
... |
How many torch relay events are scheduled for each city, and what are the cities with the most events? | [
{
"columns": [
{
"column_name": "city"
},
{
"column_name": "title"
}
],
"table_name": "torch_route"
}
] |
How can I retrieve the titles and start dates of torch relay events along with their associated tags by joining the torch_route table with another table that contains additional event details? | [
{
"columns": [
{
"column_name": "title"
},
{
"column_name": "date_start"
},
{
"column_name": "tag"
}
],
"table_name": "torch_route"
}
] |
How can I retrieve the event descriptions and the names of the participating teams for all medal events scheduled on a specific date, joining the schedules_preliminary table with another table that contains team details? | [
{
"columns": [
{
"column_name": "date_start_utc"
},
{
"column_name": "description"
},
{
"column_name": "medal"
},
{
"column_name": "team_1"
},
{
"column_name": "team_2"
}
],
"table_name": "schedules_preli... |
README.md exists but content is empty.
- Downloads last month
- 5