Dataset Viewer
The dataset viewer is not available for this split.
Job manager crashed while running this job (missing heartbeats).
Error code: JobManagerCrashedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This is the training data with execution results of https://bird-bench.github.io/
Sample
[
{
"db_id": "book_publishing_company",
"question": "Please list the first names of the employees who work as Managing Editor.",
"evidence": "Managing Editor is a job description which refers to job_desc",
"SQL": "SELECT T1.fname FROM employee AS T1 INNER JOIN jobs AS T2 ON T1.job_id = T2.job_id WHERE T2.job_desc = 'Managing Editor'",
"execution_result": {
"status": "success",
"error_message": null,
"execution_time": 0.0029268264770507812,
"result": [
{
"fname": "Annette"
},
{
"fname": "Diego"
},
{
"fname": "Matti"
},
{
"fname": "Victoria"
}
]
}
},
{
"db_id": "book_publishing_company",
"question": "What is the highest level of job to get to for the employee who got hired the earliest?",
"evidence": "highest job level refers to MAX(job_lvl); hired the earliest refers to MIN(hire_date)",
"SQL": "SELECT T2.max_lvl FROM employee AS T1 INNER JOIN jobs AS T2 ON T1.job_id = T2.job_id ORDER BY T1.hire_date LIMIT 1",
"execution_result": {
"status": "success",
"error_message": null,
"execution_time": 0.0005319118499755859,
"result": [
{
"max_lvl": 100
}
]
}
},
{
"db_id": "book_publishing_company",
"question": "In which city is the store with the highest total sales quantity located?",
"evidence": "qty is abbreviation for quantity; highest sales quantity refers to MAX(qty)",
"SQL": "SELECT T2.city FROM sales AS T1 INNER JOIN stores AS T2 ON T1.stor_id = T2.stor_id GROUP BY T2.city ORDER BY SUM(T1.qty) DESC LIMIT 1",
"execution_result": {
"status": "success",
"error_message": null,
"execution_time": 0.0011227130889892578,
"result": [
{
"city": "Remulade"
}
]
}
},
...
]
- Downloads last month
- 3