dreamerdeo's picture
Upload folder using huggingface_hub
1faca1c
[
{
"db_id": "course_teach",
"query": "SELECT count(*) FROM teacher",
"query_toks": [
"SELECT",
"count",
"(",
"*",
")",
"FROM",
"teacher"
],
"query_toks_no_value": [
"select",
"count",
"(",
"*",
")",
"from",
"teacher"
],
"question": "¿Cuántos profesores hay?",
"question_toks": [
"How",
"many",
"teachers",
"are",
"there",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
3,
[
0,
[
0,
0,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT count(*) FROM teacher",
"query_toks": [
"SELECT",
"count",
"(",
"*",
")",
"FROM",
"teacher"
],
"query_toks_no_value": [
"select",
"count",
"(",
"*",
")",
"from",
"teacher"
],
"question": "¿Cuál es el recuento total de profesores?",
"question_toks": [
"What",
"is",
"the",
"total",
"count",
"of",
"teachers",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
3,
[
0,
[
0,
0,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Name FROM teacher ORDER BY Age ASC",
"query_toks": [
"SELECT",
"Name",
"FROM",
"teacher",
"ORDER",
"BY",
"Age",
"ASC"
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"order",
"by",
"age",
"asc"
],
"question": "Enumere los nombres de los profesores en orden ascendente de edad.",
"question_toks": [
"List",
"the",
"names",
"of",
"teachers",
"in",
"ascending",
"order",
"of",
"age",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [
"asc",
[
[
0,
[
0,
6,
false
],
null
]
]
],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Name FROM teacher ORDER BY Age ASC",
"query_toks": [
"SELECT",
"Name",
"FROM",
"teacher",
"ORDER",
"BY",
"Age",
"ASC"
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"order",
"by",
"age",
"asc"
],
"question": "¿Cuáles son los nombres de los profesores ordenados por edades de manera ascendente?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"ordered",
"by",
"ascending",
"age",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [
"asc",
[
[
0,
[
0,
6,
false
],
null
]
]
],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Age , Hometown FROM teacher",
"query_toks": [
"SELECT",
"Age",
",",
"Hometown",
"FROM",
"teacher"
],
"query_toks_no_value": [
"select",
"age",
",",
"hometown",
"from",
"teacher"
],
"question": "¿Cuáles son las edades y los pueblos natales de los profesores?",
"question_toks": [
"What",
"are",
"the",
"age",
"and",
"hometown",
"of",
"teachers",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
6,
false
],
null
]
],
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Age , Hometown FROM teacher",
"query_toks": [
"SELECT",
"Age",
",",
"Hometown",
"FROM",
"teacher"
],
"query_toks_no_value": [
"select",
"age",
",",
"hometown",
"from",
"teacher"
],
"question": "¿Cuál es la edad y el pueblo natal de cada profesor?",
"question_toks": [
"What",
"is",
"the",
"age",
"and",
"hometown",
"of",
"every",
"teacher",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
6,
false
],
null
]
],
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "select name from teacher where hometown != \"little lever urban district\"",
"query_toks": [
"select",
"name",
"from",
"teacher",
"where",
"hometown",
"!=",
"\"little lever urban district\""
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"where",
"hometown",
"!",
"=",
"value"
],
"question": "Indique los nombres de los profesores cuyo pueblo natal no sea el \"Little Lever Urban District\".",
"question_toks": [
"List",
"the",
"name",
"of",
"teachers",
"whose",
"hometown",
"is",
"not",
"``",
"Little",
"Lever",
"Urban",
"District",
"''",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
false,
7,
[
0,
[
0,
7,
false
],
null
],
"\"little lever urban district\"",
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "select name from teacher where hometown != \"little lever urban district\"",
"query_toks": [
"select",
"name",
"from",
"teacher",
"where",
"hometown",
"!=",
"\"little lever urban district\""
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"where",
"hometown",
"!",
"=",
"value"
],
"question": "¿Cuáles son los nombres de los profesores cuyo pueblo natal no es el \"Little Lever Urban District\"?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"whose",
"hometown",
"is",
"not",
"``",
"Little",
"Lever",
"Urban",
"District",
"''",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
false,
7,
[
0,
[
0,
7,
false
],
null
],
"\"little lever urban district\"",
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33",
"query_toks": [
"SELECT",
"Name",
"FROM",
"teacher",
"WHERE",
"Age",
"=",
"32",
"OR",
"Age",
"=",
"33"
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"where",
"age",
"=",
"value",
"or",
"age",
"=",
"value"
],
"question": "Muestre los nombres de los profesores de 32 o 33 años",
"question_toks": [
"Show",
"the",
"name",
"of",
"teachers",
"aged",
"either",
"32",
"or",
"33",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
false,
2,
[
0,
[
0,
6,
false
],
null
],
32,
null
],
"or",
[
false,
2,
[
0,
[
0,
6,
false
],
null
],
33,
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33",
"query_toks": [
"SELECT",
"Name",
"FROM",
"teacher",
"WHERE",
"Age",
"=",
"32",
"OR",
"Age",
"=",
"33"
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"where",
"age",
"=",
"value",
"or",
"age",
"=",
"value"
],
"question": "¿Cuáles son los nombres de los profesores que tienen 32 o 33 años?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"who",
"are",
"aged",
"either",
"32",
"or",
"33",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
false,
2,
[
0,
[
0,
6,
false
],
null
],
32,
null
],
"or",
[
false,
2,
[
0,
[
0,
6,
false
],
null
],
33,
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown FROM teacher ORDER BY Age ASC LIMIT 1",
"query_toks": [
"SELECT",
"Hometown",
"FROM",
"teacher",
"ORDER",
"BY",
"Age",
"ASC",
"LIMIT",
"1"
],
"query_toks_no_value": [
"select",
"hometown",
"from",
"teacher",
"order",
"by",
"age",
"asc",
"limit",
"value"
],
"question": "¿Cuál es el pueblo natal del profesor más joven?",
"question_toks": [
"What",
"is",
"the",
"hometown",
"of",
"the",
"youngest",
"teacher",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [
"asc",
[
[
0,
[
0,
6,
false
],
null
]
]
],
"limit": 1,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown FROM teacher ORDER BY Age ASC LIMIT 1",
"query_toks": [
"SELECT",
"Hometown",
"FROM",
"teacher",
"ORDER",
"BY",
"Age",
"ASC",
"LIMIT",
"1"
],
"query_toks_no_value": [
"select",
"hometown",
"from",
"teacher",
"order",
"by",
"age",
"asc",
"limit",
"value"
],
"question": "¿De dónde es el profesor más joven?",
"question_toks": [
"Where",
"is",
"the",
"youngest",
"teacher",
"from",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [
"asc",
[
[
0,
[
0,
6,
false
],
null
]
]
],
"limit": 1,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown , COUNT(*) FROM teacher GROUP BY Hometown",
"query_toks": [
"SELECT",
"Hometown",
",",
"COUNT",
"(",
"*",
")",
"FROM",
"teacher",
"GROUP",
"BY",
"Hometown"
],
"query_toks_no_value": [
"select",
"hometown",
",",
"count",
"(",
"*",
")",
"from",
"teacher",
"group",
"by",
"hometown"
],
"question": "Muestre los profesores de pueblos diferentes y el número de profesores provenientes de cada uno.",
"question_toks": [
"Show",
"different",
"hometown",
"of",
"teachers",
"and",
"the",
"number",
"of",
"teachers",
"from",
"each",
"hometown",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
],
[
3,
[
0,
[
0,
0,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
7,
false
]
],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown , COUNT(*) FROM teacher GROUP BY Hometown",
"query_toks": [
"SELECT",
"Hometown",
",",
"COUNT",
"(",
"*",
")",
"FROM",
"teacher",
"GROUP",
"BY",
"Hometown"
],
"query_toks_no_value": [
"select",
"hometown",
",",
"count",
"(",
"*",
")",
"from",
"teacher",
"group",
"by",
"hometown"
],
"question": "Para cada pueblo natal, ¿cuántos profesores hay?",
"question_toks": [
"For",
"each",
"hometown",
",",
"how",
"many",
"teachers",
"are",
"there",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
],
[
3,
[
0,
[
0,
0,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
7,
false
]
],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1",
"query_toks": [
"SELECT",
"Hometown",
"FROM",
"teacher",
"GROUP",
"BY",
"Hometown",
"ORDER",
"BY",
"COUNT",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
],
"query_toks_no_value": [
"select",
"hometown",
"from",
"teacher",
"group",
"by",
"hometown",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"value"
],
"question": "Enumere el pueblo natal más común de los profesores.",
"question_toks": [
"List",
"the",
"most",
"common",
"hometown",
"of",
"teachers",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
7,
false
]
],
"having": [],
"orderBy": [
"desc",
[
[
0,
[
3,
0,
false
],
null
]
]
],
"limit": 1,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1",
"query_toks": [
"SELECT",
"Hometown",
"FROM",
"teacher",
"GROUP",
"BY",
"Hometown",
"ORDER",
"BY",
"COUNT",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
],
"query_toks_no_value": [
"select",
"hometown",
"from",
"teacher",
"group",
"by",
"hometown",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"value"
],
"question": "¿Cuáles son los pubelos natales donde nacen más profesores?",
"question_toks": [
"What",
"is",
"the",
"most",
"commmon",
"hometowns",
"for",
"teachers",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
7,
false
]
],
"having": [],
"orderBy": [
"desc",
[
[
0,
[
3,
0,
false
],
null
]
]
],
"limit": 1,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2",
"query_toks": [
"SELECT",
"Hometown",
"FROM",
"teacher",
"GROUP",
"BY",
"Hometown",
"HAVING",
"COUNT",
"(",
"*",
")",
">",
"=",
"2"
],
"query_toks_no_value": [
"select",
"hometown",
"from",
"teacher",
"group",
"by",
"hometown",
"having",
"count",
"(",
"*",
")",
">",
"=",
"value"
],
"question": "Muestre los pubelos natales donce nacen al menos dos profesores.",
"question_toks": [
"Show",
"the",
"hometowns",
"shared",
"by",
"at",
"least",
"two",
"teachers",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
7,
false
]
],
"having": [
[
false,
5,
[
0,
[
3,
0,
false
],
null
],
2,
null
]
],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2",
"query_toks": [
"SELECT",
"Hometown",
"FROM",
"teacher",
"GROUP",
"BY",
"Hometown",
"HAVING",
"COUNT",
"(",
"*",
")",
">",
"=",
"2"
],
"query_toks_no_value": [
"select",
"hometown",
"from",
"teacher",
"group",
"by",
"hometown",
"having",
"count",
"(",
"*",
")",
">",
"=",
"value"
],
"question": "¿Cuáles son los pubelos natales de las que vienen al menos dos profesores?",
"question_toks": [
"What",
"are",
"the",
"towns",
"from",
"which",
"at",
"least",
"two",
"teachers",
"come",
"from",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
7,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
7,
false
]
],
"having": [
[
false,
5,
[
0,
[
3,
0,
false
],
null
],
2,
null
]
],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID",
"query_toks": [
"SELECT",
"T3.Name",
",",
"T2.Course",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"course",
"AS",
"T2",
"ON",
"T1.Course_ID",
"=",
"T2.Course_ID",
"JOIN",
"teacher",
"AS",
"T3",
"ON",
"T1.Teacher_ID",
"=",
"T3.Teacher_ID"
],
"query_toks_no_value": [
"select",
"t3",
".",
"name",
",",
"t2",
".",
"course",
"from",
"course_arrange",
"as",
"t1",
"join",
"course",
"as",
"t2",
"on",
"t1",
".",
"course_id",
"=",
"t2",
".",
"course_id",
"join",
"teacher",
"as",
"t3",
"on",
"t1",
".",
"teacher_id",
"=",
"t3",
".",
"teacher_id"
],
"question": "Muestre los nombres de los profesores y las asignaturas que están dispuestos a impartir.",
"question_toks": [
"Show",
"names",
"of",
"teachers",
"and",
"the",
"courses",
"they",
"are",
"arranged",
"to",
"teach",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
0
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
8,
false
],
null
],
[
0,
1,
false
],
null
],
"and",
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
],
[
0,
[
0,
[
0,
3,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID",
"query_toks": [
"SELECT",
"T3.Name",
",",
"T2.Course",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"course",
"AS",
"T2",
"ON",
"T1.Course_ID",
"=",
"T2.Course_ID",
"JOIN",
"teacher",
"AS",
"T3",
"ON",
"T1.Teacher_ID",
"=",
"T3.Teacher_ID"
],
"query_toks_no_value": [
"select",
"t3",
".",
"name",
",",
"t2",
".",
"course",
"from",
"course_arrange",
"as",
"t1",
"join",
"course",
"as",
"t2",
"on",
"t1",
".",
"course_id",
"=",
"t2",
".",
"course_id",
"join",
"teacher",
"as",
"t3",
"on",
"t1",
".",
"teacher_id",
"=",
"t3",
".",
"teacher_id"
],
"question": "¿Cuál es el nombre de cada profesores y qué curso imparte?",
"question_toks": [
"What",
"is",
"the",
"name",
"of",
"each",
"teacher",
"and",
"what",
"course",
"they",
"teach",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
0
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
8,
false
],
null
],
[
0,
1,
false
],
null
],
"and",
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
],
[
0,
[
0,
[
0,
3,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name",
"query_toks": [
"SELECT",
"T3.Name",
",",
"T2.Course",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"course",
"AS",
"T2",
"ON",
"T1.Course_ID",
"=",
"T2.Course_ID",
"JOIN",
"teacher",
"AS",
"T3",
"ON",
"T1.Teacher_ID",
"=",
"T3.Teacher_ID",
"ORDER",
"BY",
"T3.Name"
],
"query_toks_no_value": [
"select",
"t3",
".",
"name",
",",
"t2",
".",
"course",
"from",
"course_arrange",
"as",
"t1",
"join",
"course",
"as",
"t2",
"on",
"t1",
".",
"course_id",
"=",
"t2",
".",
"course_id",
"join",
"teacher",
"as",
"t3",
"on",
"t1",
".",
"teacher_id",
"=",
"t3",
".",
"teacher_id",
"order",
"by",
"t3",
".",
"name"
],
"question": "Muestre los nombres de los profesores y los cursos que están dispuestos a enseñar en orden alfabético de sus nombres de manera ascendiente",
"question_toks": [
"Show",
"names",
"of",
"teachers",
"and",
"the",
"courses",
"they",
"are",
"arranged",
"to",
"teach",
"in",
"ascending",
"alphabetical",
"order",
"of",
"the",
"teacher",
"'s",
"name",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
0
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
8,
false
],
null
],
[
0,
1,
false
],
null
],
"and",
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
],
[
0,
[
0,
[
0,
3,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [
"asc",
[
[
0,
[
0,
5,
false
],
null
]
]
],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name",
"query_toks": [
"SELECT",
"T3.Name",
",",
"T2.Course",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"course",
"AS",
"T2",
"ON",
"T1.Course_ID",
"=",
"T2.Course_ID",
"JOIN",
"teacher",
"AS",
"T3",
"ON",
"T1.Teacher_ID",
"=",
"T3.Teacher_ID",
"ORDER",
"BY",
"T3.Name"
],
"query_toks_no_value": [
"select",
"t3",
".",
"name",
",",
"t2",
".",
"course",
"from",
"course_arrange",
"as",
"t1",
"join",
"course",
"as",
"t2",
"on",
"t1",
".",
"course_id",
"=",
"t2",
".",
"course_id",
"join",
"teacher",
"as",
"t3",
"on",
"t1",
".",
"teacher_id",
"=",
"t3",
".",
"teacher_id",
"order",
"by",
"t3",
".",
"name"
],
"question": "¿Cuáles son los nombres de los profesores y las asignaturas que imparten en orden alfabético de sus nombres de manera ascendiente.",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"and",
"the",
"courses",
"they",
"teach",
"in",
"ascending",
"alphabetical",
"order",
"by",
"the",
"name",
"of",
"the",
"teacher",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
0
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
8,
false
],
null
],
[
0,
1,
false
],
null
],
"and",
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
],
[
0,
[
0,
[
0,
3,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [
"asc",
[
[
0,
[
0,
5,
false
],
null
]
]
],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"",
"query_toks": [
"SELECT",
"T3.Name",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"course",
"AS",
"T2",
"ON",
"T1.Course_ID",
"=",
"T2.Course_ID",
"JOIN",
"teacher",
"AS",
"T3",
"ON",
"T1.Teacher_ID",
"=",
"T3.Teacher_ID",
"WHERE",
"T2.Course",
"=",
"``",
"Math",
"''"
],
"query_toks_no_value": [
"select",
"t3",
".",
"name",
"from",
"course_arrange",
"as",
"t1",
"join",
"course",
"as",
"t2",
"on",
"t1",
".",
"course_id",
"=",
"t2",
".",
"course_id",
"join",
"teacher",
"as",
"t3",
"on",
"t1",
".",
"teacher_id",
"=",
"t3",
".",
"teacher_id",
"where",
"t2",
".",
"course",
"=",
"value"
],
"question": "Muestre el nombre del profesor del curso de matemáticas.",
"question_toks": [
"Show",
"the",
"name",
"of",
"the",
"teacher",
"for",
"the",
"math",
"course",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
0
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
8,
false
],
null
],
[
0,
1,
false
],
null
],
"and",
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
false,
2,
[
0,
[
0,
3,
false
],
null
],
"\"Math\"",
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"",
"query_toks": [
"SELECT",
"T3.Name",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"course",
"AS",
"T2",
"ON",
"T1.Course_ID",
"=",
"T2.Course_ID",
"JOIN",
"teacher",
"AS",
"T3",
"ON",
"T1.Teacher_ID",
"=",
"T3.Teacher_ID",
"WHERE",
"T2.Course",
"=",
"``",
"Math",
"''"
],
"query_toks_no_value": [
"select",
"t3",
".",
"name",
"from",
"course_arrange",
"as",
"t1",
"join",
"course",
"as",
"t2",
"on",
"t1",
".",
"course_id",
"=",
"t2",
".",
"course_id",
"join",
"teacher",
"as",
"t3",
"on",
"t1",
".",
"teacher_id",
"=",
"t3",
".",
"teacher_id",
"where",
"t2",
".",
"course",
"=",
"value"
],
"question": "¿Cuáles son los nombres de las profesores que imparten cursos de matemáticas?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"people",
"who",
"teach",
"math",
"courses",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
0
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
8,
false
],
null
],
[
0,
1,
false
],
null
],
"and",
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
false,
2,
[
0,
[
0,
3,
false
],
null
],
"\"Math\"",
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T2.Name , COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name",
"query_toks": [
"SELECT",
"T2.Name",
",",
"COUNT",
"(",
"*",
")",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"teacher",
"AS",
"T2",
"ON",
"T1.Teacher_ID",
"=",
"T2.Teacher_ID",
"GROUP",
"BY",
"T2.Name"
],
"query_toks_no_value": [
"select",
"t2",
".",
"name",
",",
"count",
"(",
"*",
")",
"from",
"course_arrange",
"as",
"t1",
"join",
"teacher",
"as",
"t2",
"on",
"t1",
".",
"teacher_id",
"=",
"t2",
".",
"teacher_id",
"group",
"by",
"t2",
".",
"name"
],
"question": "Muestre los nombres de los profesores y número de cursos que imparten.",
"question_toks": [
"Show",
"names",
"of",
"teachers",
"and",
"the",
"number",
"of",
"courses",
"they",
"teach",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
],
[
3,
[
0,
[
0,
0,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
5,
false
]
],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T2.Name , COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name",
"query_toks": [
"SELECT",
"T2.Name",
",",
"COUNT",
"(",
"*",
")",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"teacher",
"AS",
"T2",
"ON",
"T1.Teacher_ID",
"=",
"T2.Teacher_ID",
"GROUP",
"BY",
"T2.Name"
],
"query_toks_no_value": [
"select",
"t2",
".",
"name",
",",
"count",
"(",
"*",
")",
"from",
"course_arrange",
"as",
"t1",
"join",
"teacher",
"as",
"t2",
"on",
"t1",
".",
"teacher_id",
"=",
"t2",
".",
"teacher_id",
"group",
"by",
"t2",
".",
"name"
],
"question": "¿Cuáles son los nombres de los profesores y cuántos cursos imparten?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"and",
"how",
"many",
"courses",
"do",
"they",
"teach",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
],
[
3,
[
0,
[
0,
0,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
5,
false
]
],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2",
"query_toks": [
"SELECT",
"T2.Name",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"teacher",
"AS",
"T2",
"ON",
"T1.Teacher_ID",
"=",
"T2.Teacher_ID",
"GROUP",
"BY",
"T2.Name",
"HAVING",
"COUNT",
"(",
"*",
")",
">",
"=",
"2"
],
"query_toks_no_value": [
"select",
"t2",
".",
"name",
"from",
"course_arrange",
"as",
"t1",
"join",
"teacher",
"as",
"t2",
"on",
"t1",
".",
"teacher_id",
"=",
"t2",
".",
"teacher_id",
"group",
"by",
"t2",
".",
"name",
"having",
"count",
"(",
"*",
")",
">",
"=",
"value"
],
"question": "Muestre los nombres de los profesores que enseñan al menos dos cursos.",
"question_toks": [
"Show",
"names",
"of",
"teachers",
"that",
"teach",
"at",
"least",
"two",
"courses",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
5,
false
]
],
"having": [
[
false,
5,
[
0,
[
3,
0,
false
],
null
],
2,
null
]
],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2",
"query_toks": [
"SELECT",
"T2.Name",
"FROM",
"course_arrange",
"AS",
"T1",
"JOIN",
"teacher",
"AS",
"T2",
"ON",
"T1.Teacher_ID",
"=",
"T2.Teacher_ID",
"GROUP",
"BY",
"T2.Name",
"HAVING",
"COUNT",
"(",
"*",
")",
">",
"=",
"2"
],
"query_toks_no_value": [
"select",
"t2",
".",
"name",
"from",
"course_arrange",
"as",
"t1",
"join",
"teacher",
"as",
"t2",
"on",
"t1",
".",
"teacher_id",
"=",
"t2",
".",
"teacher_id",
"group",
"by",
"t2",
".",
"name",
"having",
"count",
"(",
"*",
")",
">",
"=",
"value"
],
"question": "¿Cómo se llaman los profesores que imparten al menos dos cursos?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"who",
"teach",
"at",
"least",
"two",
"courses",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
2
],
[
"table_unit",
1
]
],
"conds": [
[
false,
2,
[
0,
[
0,
9,
false
],
null
],
[
0,
4,
false
],
null
]
]
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [],
"groupBy": [
[
0,
5,
false
]
],
"having": [
[
false,
5,
[
0,
[
3,
0,
false
],
null
],
2,
null
]
],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Name FROM teacher WHERE Teacher_id NOT IN (SELECT Teacher_id FROM course_arrange)",
"query_toks": [
"SELECT",
"Name",
"FROM",
"teacher",
"WHERE",
"Teacher_id",
"NOT",
"IN",
"(",
"SELECT",
"Teacher_id",
"FROM",
"course_arrange",
")"
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"where",
"teacher_id",
"not",
"in",
"(",
"select",
"teacher_id",
"from",
"course_arrange",
")"
],
"question": "Enumere los nombres de los profesores que no han sido asignados para impartir cursos.",
"question_toks": [
"List",
"the",
"names",
"of",
"teachers",
"who",
"have",
"not",
"been",
"arranged",
"to",
"teach",
"courses",
"."
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
true,
8,
[
0,
[
0,
4,
false
],
null
],
{
"from": {
"table_units": [
[
"table_unit",
2
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
9,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
},
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
},
{
"db_id": "course_teach",
"query": "SELECT Name FROM teacher WHERE Teacher_id NOT IN (SELECT Teacher_id FROM course_arrange)",
"query_toks": [
"SELECT",
"Name",
"FROM",
"teacher",
"WHERE",
"Teacher_id",
"NOT",
"IN",
"(",
"SELECT",
"Teacher_id",
"FROM",
"course_arrange",
")"
],
"query_toks_no_value": [
"select",
"name",
"from",
"teacher",
"where",
"teacher_id",
"not",
"in",
"(",
"select",
"teacher_id",
"from",
"course_arrange",
")"
],
"question": "¿Cuáles son los profesores cuyos cursos no se han asignado?",
"question_toks": [
"What",
"are",
"the",
"names",
"of",
"the",
"teachers",
"whose",
"courses",
"have",
"not",
"been",
"arranged",
"?"
],
"sql": {
"from": {
"table_units": [
[
"table_unit",
1
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
5,
false
],
null
]
]
]
],
"where": [
[
true,
8,
[
0,
[
0,
4,
false
],
null
],
{
"from": {
"table_units": [
[
"table_unit",
2
]
],
"conds": []
},
"select": [
false,
[
[
0,
[
0,
[
0,
9,
false
],
null
]
]
]
],
"where": [],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
},
null
]
],
"groupBy": [],
"having": [],
"orderBy": [],
"limit": null,
"intersect": null,
"union": null,
"except": null
}
}
]