db_id stringclasses 140
values | query stringlengths 18 577 | question stringlengths 16 224 | query_toks listlengths 4 90 | query_toks_no_value listlengths 4 125 | question_toks listlengths 4 44 | question_toks_masked listlengths 4 44 | query_toks_masked listlengths 4 125 |
|---|---|---|---|---|---|---|---|
college_1 | SELECT T2.dept_name FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code ORDER BY stu_gpa LIMIT 1 | What is the name of the department with the student that has the lowest GPA? | [
"SELECT",
"T2.dept_name",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"ORDER",
"BY",
"stu_gpa",
"LIMIT",
"1"
] | [
"select",
"t2",
".",
"dept_name",
"from",
"student",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"order",
"by",
"stu_gpa",
"limit",
"value"
] | [
"What",
"is",
"the",
"name",
"of",
"the",
"department",
"with",
"the",
"student",
"that",
"has",
"the",
"lowest",
"GPA",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"of",
"the",
"<mask>",
"with",
"the",
"<mask>",
"that",
"has",
"the",
"lowest",
"GPA",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"order",
"by",
"<mask>",
"limit",
"<unk>"
] |
college_1 | SELECT stu_fname , stu_gpa FROM student WHERE stu_gpa < (SELECT avg(stu_gpa) FROM student) | Find the first name and gpa of the students whose gpa is lower than the average gpa of all students. | [
"SELECT",
"stu_fname",
",",
"stu_gpa",
"FROM",
"student",
"WHERE",
"stu_gpa",
"<",
"(",
"SELECT",
"avg",
"(",
"stu_gpa",
")",
"FROM",
"student",
")"
] | [
"select",
"stu_fname",
",",
"stu_gpa",
"from",
"student",
"where",
"stu_gpa",
"<",
"(",
"select",
"avg",
"(",
"stu_gpa",
")",
"from",
"student",
")"
] | [
"Find",
"the",
"first",
"name",
"and",
"gpa",
"of",
"the",
"students",
"whose",
"gpa",
"is",
"lower",
"than",
"the",
"average",
"gpa",
"of",
"all",
"students",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"the",
"<mask>",
"whose",
"<mask>",
"is",
"lower",
"than",
"the",
"average",
"<mask>",
"of",
"all",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"<",
"(",
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
")"
] |
college_1 | SELECT stu_fname , stu_gpa FROM student WHERE stu_gpa < (SELECT avg(stu_gpa) FROM student) | What is the first name and GPA of every student that has a GPA lower than average? | [
"SELECT",
"stu_fname",
",",
"stu_gpa",
"FROM",
"student",
"WHERE",
"stu_gpa",
"<",
"(",
"SELECT",
"avg",
"(",
"stu_gpa",
")",
"FROM",
"student",
")"
] | [
"select",
"stu_fname",
",",
"stu_gpa",
"from",
"student",
"where",
"stu_gpa",
"<",
"(",
"select",
"avg",
"(",
"stu_gpa",
")",
"from",
"student",
")"
] | [
"What",
"is",
"the",
"first",
"name",
"and",
"GPA",
"of",
"every",
"student",
"that",
"has",
"a",
"GPA",
"lower",
"than",
"average",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"<mask>",
"and",
"GPA",
"of",
"every",
"<mask>",
"that",
"has",
"a",
"GPA",
"lower",
"than",
"average",
"?"
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"<",
"(",
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
")"
] |
college_1 | SELECT T2.dept_name , T2.dept_address FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 1 | Find the name and address of the department that has the highest number of students. | [
"SELECT",
"T2.dept_name",
",",
"T2.dept_address",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"GROUP",
"BY",
"T1.dept_code",
"ORDER",
"BY",
"count",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
] | [
"select",
"t2",
".",
"dept_name",
",",
"t2",
".",
"dept_address",
"from",
"student",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"group",
"by",
"t1",
".",
"dept_code",
"order",
"by",
"count",
... | [
"Find",
"the",
"name",
"and",
"address",
"of",
"the",
"department",
"that",
"has",
"the",
"highest",
"number",
"of",
"students",
"."
] | [
"Find",
"the",
"<mask>",
"and",
"<mask>",
"of",
"the",
"<mask>",
"that",
"has",
"the",
"<mask>",
"<mask>",
"of",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",
"<mask>",
"order",
"by",
"coun... |
college_1 | SELECT T2.dept_name , T2.dept_address FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 1 | What is the name and address of the department with the most students? | [
"SELECT",
"T2.dept_name",
",",
"T2.dept_address",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"GROUP",
"BY",
"T1.dept_code",
"ORDER",
"BY",
"count",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
] | [
"select",
"t2",
".",
"dept_name",
",",
"t2",
".",
"dept_address",
"from",
"student",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"group",
"by",
"t1",
".",
"dept_code",
"order",
"by",
"count",
... | [
"What",
"is",
"the",
"name",
"and",
"address",
"of",
"the",
"department",
"with",
"the",
"most",
"students",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"and",
"<mask>",
"of",
"the",
"<mask>",
"with",
"the",
"most",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",
"<mask>",
"order",
"by",
"coun... |
college_1 | SELECT T2.dept_name , T2.dept_address , count(*) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 3 | Find the name, address, number of students in the departments that have the top 3 highest number of students. | [
"SELECT",
"T2.dept_name",
",",
"T2.dept_address",
",",
"count",
"(",
"*",
")",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"GROUP",
"BY",
"T1.dept_code",
"ORDER",
"BY",
"count",
"(",
"*",
")",
... | [
"select",
"t2",
".",
"dept_name",
",",
"t2",
".",
"dept_address",
",",
"count",
"(",
"*",
")",
"from",
"student",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"group",
"by",
"t1",
".",
"dept... | [
"Find",
"the",
"name",
",",
"address",
",",
"number",
"of",
"students",
"in",
"the",
"departments",
"that",
"have",
"the",
"top",
"3",
"highest",
"number",
"of",
"students",
"."
] | [
"Find",
"the",
"<mask>",
",",
"<mask>",
",",
"<mask>",
"of",
"<mask>",
"in",
"the",
"<mask>",
"that",
"have",
"the",
"top",
"<unk>",
"<mask>",
"<mask>",
"of",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"count",
"(",
"*",
")",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",... |
college_1 | SELECT T2.dept_name , T2.dept_address , count(*) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 3 | What is the name, address, and number of students in the departments that have the 3 most students? | [
"SELECT",
"T2.dept_name",
",",
"T2.dept_address",
",",
"count",
"(",
"*",
")",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"GROUP",
"BY",
"T1.dept_code",
"ORDER",
"BY",
"count",
"(",
"*",
")",
... | [
"select",
"t2",
".",
"dept_name",
",",
"t2",
".",
"dept_address",
",",
"count",
"(",
"*",
")",
"from",
"student",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"group",
"by",
"t1",
".",
"dept... | [
"What",
"is",
"the",
"name",
",",
"address",
",",
"and",
"number",
"of",
"students",
"in",
"the",
"departments",
"that",
"have",
"the",
"3",
"most",
"students",
"?"
] | [
"What",
"is",
"the",
"<mask>",
",",
"<mask>",
",",
"and",
"<mask>",
"of",
"<mask>",
"in",
"the",
"<mask>",
"that",
"have",
"the",
"<unk>",
"most",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"count",
"(",
"*",
")",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",... |
college_1 | SELECT T1.emp_fname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T3.dept_code = T2.dept_code WHERE T3.dept_name = 'History' AND T2.prof_high_degree = 'Ph.D.' | Find the first name and office of the professor who is in the history department and has a Ph.D. degree. | [
"SELECT",
"T1.emp_fname",
",",
"T2.prof_office",
"FROM",
"employee",
"AS",
"T1",
"JOIN",
"professor",
"AS",
"T2",
"ON",
"T1.emp_num",
"=",
"T2.emp_num",
"JOIN",
"department",
"AS",
"T3",
"ON",
"T3.dept_code",
"=",
"T2.dept_code",
"WHERE",
"T3.dept_name",
"=",
"'... | [
"select",
"t1",
".",
"emp_fname",
",",
"t2",
".",
"prof_office",
"from",
"employee",
"as",
"t1",
"join",
"professor",
"as",
"t2",
"on",
"t1",
".",
"emp_num",
"=",
"t2",
".",
"emp_num",
"join",
"department",
"as",
"t3",
"on",
"t3",
".",
"dept_code",
"="... | [
"Find",
"the",
"first",
"name",
"and",
"office",
"of",
"the",
"professor",
"who",
"is",
"in",
"the",
"history",
"department",
"and",
"has",
"a",
"Ph.D.",
"degree",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"the",
"<mask>",
"who",
"is",
"in",
"the",
"history",
"<mask>",
"and",
"has",
"a",
"Ph.D.",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T1.emp_fname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T3.dept_code = T2.dept_code WHERE T3.dept_name = 'History' AND T2.prof_high_degree = 'Ph.D.' | What are the first names and office of the professors who are in the history department and have a Ph.D? | [
"SELECT",
"T1.emp_fname",
",",
"T2.prof_office",
"FROM",
"employee",
"AS",
"T1",
"JOIN",
"professor",
"AS",
"T2",
"ON",
"T1.emp_num",
"=",
"T2.emp_num",
"JOIN",
"department",
"AS",
"T3",
"ON",
"T3.dept_code",
"=",
"T2.dept_code",
"WHERE",
"T3.dept_name",
"=",
"'... | [
"select",
"t1",
".",
"emp_fname",
",",
"t2",
".",
"prof_office",
"from",
"employee",
"as",
"t1",
"join",
"professor",
"as",
"t2",
"on",
"t1",
".",
"emp_num",
"=",
"t2",
".",
"emp_num",
"join",
"department",
"as",
"t3",
"on",
"t3",
".",
"dept_code",
"="... | [
"What",
"are",
"the",
"first",
"names",
"and",
"office",
"of",
"the",
"professors",
"who",
"are",
"in",
"the",
"history",
"department",
"and",
"have",
"a",
"Ph.D",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"the",
"<mask>",
"who",
"are",
"in",
"the",
"history",
"<mask>",
"and",
"have",
"a",
"Ph.D",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T2.emp_fname , T1.crs_code FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num | Find the first names of all instructors who have taught some course and the course code. | [
"SELECT",
"T2.emp_fname",
",",
"T1.crs_code",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num"
] | [
"select",
"t2",
".",
"emp_fname",
",",
"t1",
".",
"crs_code",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num"
] | [
"Find",
"the",
"first",
"names",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"course",
"and",
"the",
"course",
"code",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"<mask>",
"and",
"the",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>"
] |
college_1 | SELECT T2.emp_fname , T1.crs_code FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num | What are the first names of all teachers who have taught a course and the corresponding course codes? | [
"SELECT",
"T2.emp_fname",
",",
"T1.crs_code",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num"
] | [
"select",
"t2",
".",
"emp_fname",
",",
"t1",
".",
"crs_code",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num"
] | [
"What",
"are",
"the",
"first",
"names",
"of",
"all",
"teachers",
"who",
"have",
"taught",
"a",
"course",
"and",
"the",
"corresponding",
"course",
"codes",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"of",
"all",
"teachers",
"who",
"have",
"taught",
"a",
"<mask>",
"and",
"the",
"corresponding",
"<mask>",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>"
] |
college_1 | SELECT T2.emp_fname , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code | Find the first names of all instructors who have taught some course and the course description. | [
"SELECT",
"T2.emp_fname",
",",
"T3.crs_description",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"course",
"AS",
"T3",
"ON",
"T1.crs_code",
"=",
"T3.crs_code"
] | [
"select",
"t2",
".",
"emp_fname",
",",
"t3",
".",
"crs_description",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"course",
"as",
"t3",
"on",
"t1",
".",
"crs_code",
"=",
... | [
"Find",
"the",
"first",
"names",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"course",
"and",
"the",
"course",
"description",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"<mask>",
"and",
"the",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T2.emp_fname , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code | What are the first names of all teachers who have taught a course and the corresponding descriptions? | [
"SELECT",
"T2.emp_fname",
",",
"T3.crs_description",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"course",
"AS",
"T3",
"ON",
"T1.crs_code",
"=",
"T3.crs_code"
] | [
"select",
"t2",
".",
"emp_fname",
",",
"t3",
".",
"crs_description",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"course",
"as",
"t3",
"on",
"t1",
".",
"crs_code",
"=",
... | [
"What",
"are",
"the",
"first",
"names",
"of",
"all",
"teachers",
"who",
"have",
"taught",
"a",
"course",
"and",
"the",
"corresponding",
"descriptions",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"of",
"all",
"teachers",
"who",
"have",
"taught",
"a",
"<mask>",
"and",
"the",
"corresponding",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T2.emp_fname , T4.prof_office , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num | Find the first names and offices of all instructors who have taught some course and also find the course description. | [
"SELECT",
"T2.emp_fname",
",",
"T4.prof_office",
",",
"T3.crs_description",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"course",
"AS",
"T3",
"ON",
"T1.crs_code",
"=",
"T3.crs_code",
"JOIN",
"profe... | [
"select",
"t2",
".",
"emp_fname",
",",
"t4",
".",
"prof_office",
",",
"t3",
".",
"crs_description",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"course",
"as",
"t3",
"on",... | [
"Find",
"the",
"first",
"names",
"and",
"offices",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"course",
"and",
"also",
"find",
"the",
"course",
"description",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"<mask>",
"and",
"also",
"find",
"the",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask... |
college_1 | SELECT T2.emp_fname , T4.prof_office , T3.crs_description FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num | What are the first names, office locations of all lecturers who have taught some course? | [
"SELECT",
"T2.emp_fname",
",",
"T4.prof_office",
",",
"T3.crs_description",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"course",
"AS",
"T3",
"ON",
"T1.crs_code",
"=",
"T3.crs_code",
"JOIN",
"profe... | [
"select",
"t2",
".",
"emp_fname",
",",
"t4",
".",
"prof_office",
",",
"t3",
".",
"crs_description",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"course",
"as",
"t3",
"on",... | [
"What",
"are",
"the",
"first",
"names",
",",
"office",
"locations",
"of",
"all",
"lecturers",
"who",
"have",
"taught",
"some",
"course",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
",",
"<mask>",
"locations",
"of",
"all",
"lecturers",
"who",
"have",
"taught",
"some",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask... |
college_1 | SELECT T2.emp_fname , T4.prof_office , T3.crs_description , T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code | Find the first names and offices of all instructors who have taught some course and the course description and the department name. | [
"SELECT",
"T2.emp_fname",
",",
"T4.prof_office",
",",
"T3.crs_description",
",",
"T5.dept_name",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"course",
"AS",
"T3",
"ON",
"T1.crs_code",
"=",
"T3.crs_... | [
"select",
"t2",
".",
"emp_fname",
",",
"t4",
".",
"prof_office",
",",
"t3",
".",
"crs_description",
",",
"t5",
".",
"dept_name",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join"... | [
"Find",
"the",
"first",
"names",
"and",
"offices",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"course",
"and",
"the",
"course",
"description",
"and",
"the",
"department",
"name",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"all",
"instructors",
"who",
"have",
"taught",
"some",
"<mask>",
"and",
"the",
"<mask>",
"<mask>",
"and",
"the",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
... |
college_1 | SELECT T2.emp_fname , T4.prof_office , T3.crs_description , T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code | What are the first names, office locations, and departments of all instructors, and also what are the descriptions of the courses they teach? | [
"SELECT",
"T2.emp_fname",
",",
"T4.prof_office",
",",
"T3.crs_description",
",",
"T5.dept_name",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"course",
"AS",
"T3",
"ON",
"T1.crs_code",
"=",
"T3.crs_... | [
"select",
"t2",
".",
"emp_fname",
",",
"t4",
".",
"prof_office",
",",
"t3",
".",
"crs_description",
",",
"t5",
".",
"dept_name",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join"... | [
"What",
"are",
"the",
"first",
"names",
",",
"office",
"locations",
",",
"and",
"departments",
"of",
"all",
"instructors",
",",
"and",
"also",
"what",
"are",
"the",
"descriptions",
"of",
"the",
"courses",
"they",
"teach",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
",",
"<mask>",
"locations",
",",
"and",
"<mask>",
"of",
"all",
"instructors",
",",
"and",
"also",
"what",
"are",
"the",
"<mask>",
"of",
"the",
"<mask>",
"they",
"teach",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
... |
college_1 | SELECT T1.stu_fname , T1.stu_lname , T4.crs_description FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code | Find names of all students who took some course and the course description. | [
"SELECT",
"T1.stu_fname",
",",
"T1.stu_lname",
",",
"T4.crs_description",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"JOIN",
"CLASS",
"AS",
"T3",
"ON",
"T2.class_code",
"=",
"T3.class_code",
"JOIN",
"cours... | [
"select",
"t1",
".",
"stu_fname",
",",
"t1",
".",
"stu_lname",
",",
"t4",
".",
"crs_description",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"join",
"class",
"as",
"t3",
"on",
"... | [
"Find",
"names",
"of",
"all",
"students",
"who",
"took",
"some",
"course",
"and",
"the",
"course",
"description",
"."
] | [
"Find",
"<mask>",
"of",
"all",
"<mask>",
"who",
"took",
"some",
"<mask>",
"and",
"the",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask... |
college_1 | SELECT T1.stu_fname , T1.stu_lname , T4.crs_description FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code JOIN course AS T4 ON T3.crs_code = T4.crs_code | What are the names of all students who took a class and the corresponding course descriptions? | [
"SELECT",
"T1.stu_fname",
",",
"T1.stu_lname",
",",
"T4.crs_description",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"JOIN",
"CLASS",
"AS",
"T3",
"ON",
"T2.class_code",
"=",
"T3.class_code",
"JOIN",
"cours... | [
"select",
"t1",
".",
"stu_fname",
",",
"t1",
".",
"stu_lname",
",",
"t4",
".",
"crs_description",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"join",
"class",
"as",
"t3",
"on",
"... | [
"What",
"are",
"the",
"names",
"of",
"all",
"students",
"who",
"took",
"a",
"class",
"and",
"the",
"corresponding",
"course",
"descriptions",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"all",
"<mask>",
"who",
"took",
"a",
"<mask>",
"and",
"the",
"corresponding",
"<mask>",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask... |
college_1 | SELECT T1.stu_fname , T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'C' OR T2.enroll_grade = 'A' | Find names of all students who took some course and got A or C. | [
"SELECT",
"T1.stu_fname",
",",
"T1.stu_lname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"WHERE",
"T2.enroll_grade",
"=",
"'C",
"'",
"OR",
"T2.enroll_grade",
"=",
"'A",
"'"
] | [
"select",
"t1",
".",
"stu_fname",
",",
"t1",
".",
"stu_lname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"where",
"t2",
".",
"enroll_grade",
"=",
"value",
"or",
"t2",
".",
"enr... | [
"Find",
"names",
"of",
"all",
"students",
"who",
"took",
"some",
"course",
"and",
"got",
"A",
"or",
"C",
"."
] | [
"Find",
"<mask>",
"of",
"all",
"<mask>",
"who",
"took",
"some",
"<mask>",
"and",
"got",
"A",
"or",
"C",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>",
"or",
"<mask... |
college_1 | SELECT T1.stu_fname , T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'C' OR T2.enroll_grade = 'A' | What are the names of all students taking a course who received an A or C? | [
"SELECT",
"T1.stu_fname",
",",
"T1.stu_lname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"WHERE",
"T2.enroll_grade",
"=",
"'C",
"'",
"OR",
"T2.enroll_grade",
"=",
"'A",
"'"
] | [
"select",
"t1",
".",
"stu_fname",
",",
"t1",
".",
"stu_lname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"where",
"t2",
".",
"enroll_grade",
"=",
"value",
"or",
"t2",
".",
"enr... | [
"What",
"are",
"the",
"names",
"of",
"all",
"students",
"taking",
"a",
"course",
"who",
"received",
"an",
"A",
"or",
"C",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"all",
"<mask>",
"taking",
"a",
"<mask>",
"who",
"received",
"an",
"A",
"or",
"C",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>",
"or",
"<mask... |
college_1 | SELECT T2.emp_fname , T1.class_room FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Accounting' | Find the first names of all professors in the Accounting department who is teaching some course and the class room. | [
"SELECT",
"T2.emp_fname",
",",
"T1.class_room",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"professor",
"AS",
"T3",
"ON",
"T2.emp_num",
"=",
"T3.emp_num",
"JOIN",
"department",
"AS",
"T4",
"ON",... | [
"select",
"t2",
".",
"emp_fname",
",",
"t1",
".",
"class_room",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"professor",
"as",
"t3",
"on",
"t2",
".",
"emp_num",
"=",
"t3... | [
"Find",
"the",
"first",
"names",
"of",
"all",
"professors",
"in",
"the",
"Accounting",
"department",
"who",
"is",
"teaching",
"some",
"course",
"and",
"the",
"class",
"room",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"of",
"all",
"<mask>",
"in",
"the",
"Accounting",
"<mask>",
"who",
"is",
"teaching",
"some",
"<mask>",
"and",
"the",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T2.emp_fname , T1.class_room FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Accounting' | What are the first names of all Accounting professors who teach and what are the classrooms of the courses they teach? | [
"SELECT",
"T2.emp_fname",
",",
"T1.class_room",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"professor",
"AS",
"T3",
"ON",
"T2.emp_num",
"=",
"T3.emp_num",
"JOIN",
"department",
"AS",
"T4",
"ON",... | [
"select",
"t2",
".",
"emp_fname",
",",
"t1",
".",
"class_room",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"professor",
"as",
"t3",
"on",
"t2",
".",
"emp_num",
"=",
"t3... | [
"What",
"are",
"the",
"first",
"names",
"of",
"all",
"Accounting",
"professors",
"who",
"teach",
"and",
"what",
"are",
"the",
"classrooms",
"of",
"the",
"courses",
"they",
"teach",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"of",
"all",
"Accounting",
"<mask>",
"who",
"teach",
"and",
"what",
"are",
"the",
"classrooms",
"of",
"the",
"<mask>",
"they",
"teach",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT DISTINCT T2.emp_fname , T3.prof_high_degree FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Computer Info. Systems' | Find the first names and degree of all professors who are teaching some class in Computer Info. Systems department. | [
"SELECT",
"DISTINCT",
"T2.emp_fname",
",",
"T3.prof_high_degree",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"professor",
"AS",
"T3",
"ON",
"T2.emp_num",
"=",
"T3.emp_num",
"JOIN",
"department",
"... | [
"select",
"distinct",
"t2",
".",
"emp_fname",
",",
"t3",
".",
"prof_high_degree",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"professor",
"as",
"t3",
"on",
"t2",
".",
"em... | [
"Find",
"the",
"first",
"names",
"and",
"degree",
"of",
"all",
"professors",
"who",
"are",
"teaching",
"some",
"class",
"in",
"Computer",
"Info",
".",
"Systems",
"department",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"all",
"<mask>",
"who",
"are",
"teaching",
"some",
"<mask>",
"in",
"Computer",
"Info",
".",
"Systems",
"<mask>",
"."
] | [
"select",
"distinct",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
... |
college_1 | SELECT DISTINCT T2.emp_fname , T3.prof_high_degree FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Computer Info. Systems' | What are the different first names and highest degree attained for professors teaching in the Computer Information Systems department? | [
"SELECT",
"DISTINCT",
"T2.emp_fname",
",",
"T3.prof_high_degree",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"JOIN",
"professor",
"AS",
"T3",
"ON",
"T2.emp_num",
"=",
"T3.emp_num",
"JOIN",
"department",
"... | [
"select",
"distinct",
"t2",
".",
"emp_fname",
",",
"t3",
".",
"prof_high_degree",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"join",
"professor",
"as",
"t3",
"on",
"t2",
".",
"em... | [
"What",
"are",
"the",
"different",
"first",
"names",
"and",
"highest",
"degree",
"attained",
"for",
"professors",
"teaching",
"in",
"the",
"Computer",
"Information",
"Systems",
"department",
"?"
] | [
"What",
"are",
"the",
"different",
"<mask>",
"<mask>",
"and",
"<mask>",
"<mask>",
"attained",
"for",
"<mask>",
"teaching",
"in",
"the",
"Computer",
"Information",
"Systems",
"<mask>",
"?"
] | [
"select",
"distinct",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
... |
college_1 | SELECT T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'A' AND T2.class_code = 10018 | What is the last name of the student who got a grade A in the class with code 10018. | [
"SELECT",
"T1.stu_lname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"WHERE",
"T2.enroll_grade",
"=",
"'A",
"'",
"AND",
"T2.class_code",
"=",
"10018"
] | [
"select",
"t1",
".",
"stu_lname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"where",
"t2",
".",
"enroll_grade",
"=",
"value",
"and",
"t2",
".",
"class_code",
"=",
"value"
] | [
"What",
"is",
"the",
"last",
"name",
"of",
"the",
"student",
"who",
"got",
"a",
"grade",
"A",
"in",
"the",
"class",
"with",
"code",
"10018",
"."
] | [
"What",
"is",
"the",
"<mask>",
"<mask>",
"of",
"the",
"<mask>",
"who",
"got",
"a",
"<mask>",
"A",
"in",
"the",
"<mask>",
"with",
"<mask>",
"<unk>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>",
"and",
"<mask>",
".",
"<mask>",
"=",
"<unk... |
college_1 | SELECT T1.stu_lname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE T2.enroll_grade = 'A' AND T2.class_code = 10018 | What is the last name of the student who received an A in the class with the code 10018? | [
"SELECT",
"T1.stu_lname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"WHERE",
"T2.enroll_grade",
"=",
"'A",
"'",
"AND",
"T2.class_code",
"=",
"10018"
] | [
"select",
"t1",
".",
"stu_lname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"where",
"t2",
".",
"enroll_grade",
"=",
"value",
"and",
"t2",
".",
"class_code",
"=",
"value"
] | [
"What",
"is",
"the",
"last",
"name",
"of",
"the",
"student",
"who",
"received",
"an",
"A",
"in",
"the",
"class",
"with",
"the",
"code",
"10018",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"<mask>",
"of",
"the",
"<mask>",
"who",
"received",
"an",
"A",
"in",
"the",
"<mask>",
"with",
"the",
"<mask>",
"<unk>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>",
"and",
"<mask>",
".",
"<mask>",
"=",
"<unk... |
college_1 | SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T1.dept_code = T3.dept_code WHERE T3.dept_name = 'History' AND T1.prof_high_degree != 'Ph.D.' | Find the first name and office of history professor who did not get a Ph.D. degree. | [
"SELECT",
"T2.emp_fname",
",",
"T1.prof_office",
"FROM",
"professor",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.emp_num",
"=",
"T2.emp_num",
"JOIN",
"department",
"AS",
"T3",
"ON",
"T1.dept_code",
"=",
"T3.dept_code",
"WHERE",
"T3.dept_name",
"=",
"'... | [
"select",
"t2",
".",
"emp_fname",
",",
"t1",
".",
"prof_office",
"from",
"professor",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"emp_num",
"=",
"t2",
".",
"emp_num",
"join",
"department",
"as",
"t3",
"on",
"t1",
".",
"dept_code",
"="... | [
"Find",
"the",
"first",
"name",
"and",
"office",
"of",
"history",
"professor",
"who",
"did",
"not",
"get",
"a",
"Ph.D.",
"degree",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"history",
"<mask>",
"who",
"did",
"not",
"get",
"a",
"Ph.D.",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T1.dept_code = T3.dept_code WHERE T3.dept_name = 'History' AND T1.prof_high_degree != 'Ph.D.' | What are the first names and offices of history professors who don't have Ph.D.s? | [
"SELECT",
"T2.emp_fname",
",",
"T1.prof_office",
"FROM",
"professor",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.emp_num",
"=",
"T2.emp_num",
"JOIN",
"department",
"AS",
"T3",
"ON",
"T1.dept_code",
"=",
"T3.dept_code",
"WHERE",
"T3.dept_name",
"=",
"'... | [
"select",
"t2",
".",
"emp_fname",
",",
"t1",
".",
"prof_office",
"from",
"professor",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"emp_num",
"=",
"t2",
".",
"emp_num",
"join",
"department",
"as",
"t3",
"on",
"t1",
".",
"dept_code",
"="... | [
"What",
"are",
"the",
"first",
"names",
"and",
"offices",
"of",
"history",
"professors",
"who",
"do",
"n't",
"have",
"Ph.D.s",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"and",
"<mask>",
"of",
"history",
"<mask>",
"who",
"do",
"n't",
"have",
"Ph.D.s",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mas... |
college_1 | SELECT T2.emp_fname FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num GROUP BY T1.prof_num HAVING count(*) > 1 | Find the first names of professors who are teaching more than one class. | [
"SELECT",
"T2.emp_fname",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"GROUP",
"BY",
"T1.prof_num",
"HAVING",
"count",
"(",
"*",
")",
">",
"1"
] | [
"select",
"t2",
".",
"emp_fname",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"group",
"by",
"t1",
".",
"prof_num",
"having",
"count",
"(",
"*",
")",
">",
"value"
] | [
"Find",
"the",
"first",
"names",
"of",
"professors",
"who",
"are",
"teaching",
"more",
"than",
"one",
"class",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"of",
"<mask>",
"who",
"are",
"teaching",
"more",
"than",
"one",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",
"<mask>",
"<mask>",
"count",
"(",
"*",
")",
">",
"<unk>"
] |
college_1 | SELECT T2.emp_fname FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num GROUP BY T1.prof_num HAVING count(*) > 1 | What are the first names of all professors who teach more than one class? | [
"SELECT",
"T2.emp_fname",
"FROM",
"CLASS",
"AS",
"T1",
"JOIN",
"employee",
"AS",
"T2",
"ON",
"T1.prof_num",
"=",
"T2.emp_num",
"GROUP",
"BY",
"T1.prof_num",
"HAVING",
"count",
"(",
"*",
")",
">",
"1"
] | [
"select",
"t2",
".",
"emp_fname",
"from",
"class",
"as",
"t1",
"join",
"employee",
"as",
"t2",
"on",
"t1",
".",
"prof_num",
"=",
"t2",
".",
"emp_num",
"group",
"by",
"t1",
".",
"prof_num",
"having",
"count",
"(",
"*",
")",
">",
"value"
] | [
"What",
"are",
"the",
"first",
"names",
"of",
"all",
"professors",
"who",
"teach",
"more",
"than",
"one",
"class",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"of",
"all",
"<mask>",
"who",
"teach",
"more",
"than",
"one",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",
"<mask>",
"<mask>",
"count",
"(",
"*",
")",
">",
"<unk>"
] |
college_1 | SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num GROUP BY T2.stu_num HAVING count(*) = 1 | Find the first names of students who took exactly one class. | [
"SELECT",
"T1.stu_fname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"GROUP",
"BY",
"T2.stu_num",
"HAVING",
"count",
"(",
"*",
")",
"=",
"1"
] | [
"select",
"t1",
".",
"stu_fname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"group",
"by",
"t2",
".",
"stu_num",
"having",
"count",
"(",
"*",
")",
"=",
"value"
] | [
"Find",
"the",
"first",
"names",
"of",
"students",
"who",
"took",
"exactly",
"one",
"class",
"."
] | [
"Find",
"the",
"<mask>",
"<mask>",
"of",
"<mask>",
"who",
"took",
"exactly",
"one",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",
"<mask>",
"<mask>",
"count",
"(",
"*",
")",
"=",
"<unk>"
] |
college_1 | SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num GROUP BY T2.stu_num HAVING count(*) = 1 | What are the first names of student who only took one course? | [
"SELECT",
"T1.stu_fname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"GROUP",
"BY",
"T2.stu_num",
"HAVING",
"count",
"(",
"*",
")",
"=",
"1"
] | [
"select",
"t1",
".",
"stu_fname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"group",
"by",
"t2",
".",
"stu_num",
"having",
"count",
"(",
"*",
")",
"=",
"value"
] | [
"What",
"are",
"the",
"first",
"names",
"of",
"student",
"who",
"only",
"took",
"one",
"course",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"<mask>",
"of",
"<mask>",
"who",
"only",
"took",
"one",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"group",
"by",
"<mask>",
".",
"<mask>",
"<mask>",
"count",
"(",
"*",
")",
"=",
"<unk>"
] |
college_1 | SELECT T2.dept_name FROM course AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.crs_description LIKE '%Statistics%' | Find the name of department that offers the class whose description has the word "Statistics". | [
"SELECT",
"T2.dept_name",
"FROM",
"course",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"WHERE",
"T1.crs_description",
"LIKE",
"'",
"%",
"Statistics",
"%",
"'"
] | [
"select",
"t2",
".",
"dept_name",
"from",
"course",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"where",
"t1",
".",
"crs_description",
"like",
"value"
] | [
"Find",
"the",
"name",
"of",
"department",
"that",
"offers",
"the",
"class",
"whose",
"description",
"has",
"the",
"word",
"``",
"Statistics",
"''",
"."
] | [
"Find",
"the",
"<mask>",
"of",
"<mask>",
"that",
"offers",
"the",
"<mask>",
"whose",
"<mask>",
"has",
"the",
"word",
"``",
"Statistics",
"''",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"like",
"<unk>"
] |
college_1 | SELECT T2.dept_name FROM course AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.crs_description LIKE '%Statistics%' | What is the name of the department that offers a course that has a description including the word "Statistics"? | [
"SELECT",
"T2.dept_name",
"FROM",
"course",
"AS",
"T1",
"JOIN",
"department",
"AS",
"T2",
"ON",
"T1.dept_code",
"=",
"T2.dept_code",
"WHERE",
"T1.crs_description",
"LIKE",
"'",
"%",
"Statistics",
"%",
"'"
] | [
"select",
"t2",
".",
"dept_name",
"from",
"course",
"as",
"t1",
"join",
"department",
"as",
"t2",
"on",
"t1",
".",
"dept_code",
"=",
"t2",
".",
"dept_code",
"where",
"t1",
".",
"crs_description",
"like",
"value"
] | [
"What",
"is",
"the",
"name",
"of",
"the",
"department",
"that",
"offers",
"a",
"course",
"that",
"has",
"a",
"description",
"including",
"the",
"word",
"``",
"Statistics",
"''",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"of",
"the",
"<mask>",
"that",
"offers",
"a",
"<mask>",
"that",
"has",
"a",
"<mask>",
"including",
"the",
"word",
"``",
"Statistics",
"''",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"like",
"<unk>"
] |
college_1 | SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND T1.stu_lname LIKE 'S%' | What is the first name of the student whose last name starting with the letter S and is taking ACCT-211 class? | [
"SELECT",
"T1.stu_fname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"JOIN",
"CLASS",
"AS",
"T3",
"ON",
"T2.class_code",
"=",
"T3.class_code",
"WHERE",
"T3.crs_code",
"=",
"'ACCT-211",
"'",
"AND",
"T1.st... | [
"select",
"t1",
".",
"stu_fname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"join",
"class",
"as",
"t3",
"on",
"t2",
".",
"class_code",
"=",
"t3",
".",
"class_code",
"where",
"... | [
"What",
"is",
"the",
"first",
"name",
"of",
"the",
"student",
"whose",
"last",
"name",
"starting",
"with",
"the",
"letter",
"S",
"and",
"is",
"taking",
"ACCT-211",
"class",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"<mask>",
"of",
"the",
"<mask>",
"whose",
"<mask>",
"<mask>",
"starting",
"with",
"the",
"letter",
"S",
"and",
"is",
"taking",
"ACCT-211",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mas... |
college_1 | SELECT T1.stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T2.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211' AND T1.stu_lname LIKE 'S%' | What is the first name of the student whose last name starts with the letter S and is taking ACCT-211? | [
"SELECT",
"T1.stu_fname",
"FROM",
"student",
"AS",
"T1",
"JOIN",
"enroll",
"AS",
"T2",
"ON",
"T1.stu_num",
"=",
"T2.stu_num",
"JOIN",
"CLASS",
"AS",
"T3",
"ON",
"T2.class_code",
"=",
"T3.class_code",
"WHERE",
"T3.crs_code",
"=",
"'ACCT-211",
"'",
"AND",
"T1.st... | [
"select",
"t1",
".",
"stu_fname",
"from",
"student",
"as",
"t1",
"join",
"enroll",
"as",
"t2",
"on",
"t1",
".",
"stu_num",
"=",
"t2",
".",
"stu_num",
"join",
"class",
"as",
"t3",
"on",
"t2",
".",
"class_code",
"=",
"t3",
".",
"class_code",
"where",
"... | [
"What",
"is",
"the",
"first",
"name",
"of",
"the",
"student",
"whose",
"last",
"name",
"starts",
"with",
"the",
"letter",
"S",
"and",
"is",
"taking",
"ACCT-211",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"<mask>",
"of",
"the",
"<mask>",
"whose",
"<mask>",
"<mask>",
"starts",
"with",
"the",
"letter",
"S",
"and",
"is",
"taking",
"ACCT-211",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mas... |
sports_competition | SELECT count(*) FROM club | How many clubs are there? | [
"SELECT",
"count",
"(",
"*",
")",
"FROM",
"club"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"club"
] | [
"How",
"many",
"clubs",
"are",
"there",
"?"
] | [
"How",
"many",
"<mask>",
"are",
"there",
"?"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"<mask>"
] |
sports_competition | SELECT count(*) FROM club | What is the total number of clubs? | [
"SELECT",
"count",
"(",
"*",
")",
"FROM",
"club"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"club"
] | [
"What",
"is",
"the",
"total",
"number",
"of",
"clubs",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"number",
"of",
"<mask>",
"?"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"<mask>"
] |
sports_competition | SELECT DISTINCT Region FROM club ORDER BY Region ASC | List the distinct region of clubs in ascending alphabetical order. | [
"SELECT",
"DISTINCT",
"Region",
"FROM",
"club",
"ORDER",
"BY",
"Region",
"ASC"
] | [
"select",
"distinct",
"region",
"from",
"club",
"order",
"by",
"region",
"asc"
] | [
"List",
"the",
"distinct",
"region",
"of",
"clubs",
"in",
"ascending",
"alphabetical",
"order",
"."
] | [
"List",
"the",
"distinct",
"<mask>",
"of",
"<mask>",
"in",
"ascending",
"alphabetical",
"order",
"."
] | [
"select",
"distinct",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"asc"
] |
sports_competition | SELECT DISTINCT Region FROM club ORDER BY Region ASC | What are the different regions of clubs in ascending alphabetical order? | [
"SELECT",
"DISTINCT",
"Region",
"FROM",
"club",
"ORDER",
"BY",
"Region",
"ASC"
] | [
"select",
"distinct",
"region",
"from",
"club",
"order",
"by",
"region",
"asc"
] | [
"What",
"are",
"the",
"different",
"regions",
"of",
"clubs",
"in",
"ascending",
"alphabetical",
"order",
"?"
] | [
"What",
"are",
"the",
"different",
"<mask>",
"of",
"<mask>",
"in",
"ascending",
"alphabetical",
"order",
"?"
] | [
"select",
"distinct",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"asc"
] |
sports_competition | SELECT avg(Gold) FROM club_rank | What is the average number of gold medals for clubs? | [
"SELECT",
"avg",
"(",
"Gold",
")",
"FROM",
"club_rank"
] | [
"select",
"avg",
"(",
"gold",
")",
"from",
"club_rank"
] | [
"What",
"is",
"the",
"average",
"number",
"of",
"gold",
"medals",
"for",
"clubs",
"?"
] | [
"What",
"is",
"the",
"average",
"number",
"of",
"<mask>",
"medals",
"for",
"<mask>",
"?"
] | [
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT avg(Gold) FROM club_rank | What is the average number of gold medals for a club? | [
"SELECT",
"avg",
"(",
"Gold",
")",
"FROM",
"club_rank"
] | [
"select",
"avg",
"(",
"gold",
")",
"from",
"club_rank"
] | [
"What",
"is",
"the",
"average",
"number",
"of",
"gold",
"medals",
"for",
"a",
"club",
"?"
] | [
"What",
"is",
"the",
"average",
"number",
"of",
"<mask>",
"medals",
"for",
"a",
"<mask>",
"?"
] | [
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT Competition_type , Country FROM competition | What are the types and countries of competitions? | [
"SELECT",
"Competition_type",
",",
"Country",
"FROM",
"competition"
] | [
"select",
"competition_type",
",",
"country",
"from",
"competition"
] | [
"What",
"are",
"the",
"types",
"and",
"countries",
"of",
"competitions",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"and",
"<mask>",
"of",
"<mask>",
"?"
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>"
] |
sports_competition | SELECT Competition_type , Country FROM competition | What are the types of every competition and in which countries are they located? | [
"SELECT",
"Competition_type",
",",
"Country",
"FROM",
"competition"
] | [
"select",
"competition_type",
",",
"country",
"from",
"competition"
] | [
"What",
"are",
"the",
"types",
"of",
"every",
"competition",
"and",
"in",
"which",
"countries",
"are",
"they",
"located",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"every",
"<mask>",
"and",
"in",
"which",
"<mask>",
"are",
"they",
"located",
"?"
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>"
] |
sports_competition | SELECT DISTINCT YEAR FROM competition WHERE Competition_type != "Tournament" | What are the distinct years in which the competitions type is not "Tournament"? | [
"SELECT",
"DISTINCT",
"YEAR",
"FROM",
"competition",
"WHERE",
"Competition_type",
"!",
"=",
"``",
"Tournament",
"''"
] | [
"select",
"distinct",
"year",
"from",
"competition",
"where",
"competition_type",
"!",
"=",
"value"
] | [
"What",
"are",
"the",
"distinct",
"years",
"in",
"which",
"the",
"competitions",
"type",
"is",
"not",
"``",
"Tournament",
"''",
"?"
] | [
"What",
"are",
"the",
"distinct",
"<mask>",
"in",
"which",
"the",
"<mask>",
"<mask>",
"is",
"not",
"``",
"Tournament",
"''",
"?"
] | [
"select",
"distinct",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"!",
"=",
"<unk>"
] |
sports_competition | SELECT DISTINCT YEAR FROM competition WHERE Competition_type != "Tournament" | What are the different years for all competitions that are not of type equal to tournament? | [
"SELECT",
"DISTINCT",
"YEAR",
"FROM",
"competition",
"WHERE",
"Competition_type",
"!",
"=",
"``",
"Tournament",
"''"
] | [
"select",
"distinct",
"year",
"from",
"competition",
"where",
"competition_type",
"!",
"=",
"value"
] | [
"What",
"are",
"the",
"different",
"years",
"for",
"all",
"competitions",
"that",
"are",
"not",
"of",
"type",
"equal",
"to",
"tournament",
"?"
] | [
"What",
"are",
"the",
"different",
"<mask>",
"for",
"all",
"<mask>",
"that",
"are",
"not",
"of",
"<mask>",
"equal",
"to",
"tournament",
"?"
] | [
"select",
"distinct",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"!",
"=",
"<unk>"
] |
sports_competition | SELECT max(Silver) , min(Silver) FROM club_rank | What are the maximum and minimum number of silver medals for clubs. | [
"SELECT",
"max",
"(",
"Silver",
")",
",",
"min",
"(",
"Silver",
")",
"FROM",
"club_rank"
] | [
"select",
"max",
"(",
"silver",
")",
",",
"min",
"(",
"silver",
")",
"from",
"club_rank"
] | [
"What",
"are",
"the",
"maximum",
"and",
"minimum",
"number",
"of",
"silver",
"medals",
"for",
"clubs",
"."
] | [
"What",
"are",
"the",
"maximum",
"and",
"minimum",
"number",
"of",
"<mask>",
"medals",
"for",
"<mask>",
"."
] | [
"select",
"max",
"(",
"<mask>",
")",
",",
"min",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT max(Silver) , min(Silver) FROM club_rank | What are the maximum and minimum number of silver medals for all the clubs? | [
"SELECT",
"max",
"(",
"Silver",
")",
",",
"min",
"(",
"Silver",
")",
"FROM",
"club_rank"
] | [
"select",
"max",
"(",
"silver",
")",
",",
"min",
"(",
"silver",
")",
"from",
"club_rank"
] | [
"What",
"are",
"the",
"maximum",
"and",
"minimum",
"number",
"of",
"silver",
"medals",
"for",
"all",
"the",
"clubs",
"?"
] | [
"What",
"are",
"the",
"maximum",
"and",
"minimum",
"number",
"of",
"<mask>",
"medals",
"for",
"all",
"the",
"<mask>",
"?"
] | [
"select",
"max",
"(",
"<mask>",
")",
",",
"min",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT count(*) FROM club_rank WHERE Total < 10 | How many clubs have total medals less than 10? | [
"SELECT",
"count",
"(",
"*",
")",
"FROM",
"club_rank",
"WHERE",
"Total",
"<",
"10"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"club_rank",
"where",
"total",
"<",
"value"
] | [
"How",
"many",
"clubs",
"have",
"total",
"medals",
"less",
"than",
"10",
"?"
] | [
"How",
"many",
"<mask>",
"have",
"<mask>",
"medals",
"less",
"than",
"<unk>",
"?"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>"
] |
sports_competition | SELECT count(*) FROM club_rank WHERE Total < 10 | What is the total number of clubs that have less than 10 medals in total? | [
"SELECT",
"count",
"(",
"*",
")",
"FROM",
"club_rank",
"WHERE",
"Total",
"<",
"10"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"club_rank",
"where",
"total",
"<",
"value"
] | [
"What",
"is",
"the",
"total",
"number",
"of",
"clubs",
"that",
"have",
"less",
"than",
"10",
"medals",
"in",
"total",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"number",
"of",
"<mask>",
"that",
"have",
"less",
"than",
"<unk>",
"medals",
"in",
"<mask>",
"?"
] | [
"select",
"count",
"(",
"*",
")",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>"
] |
sports_competition | SELECT name FROM club ORDER BY Start_year ASC | List all club names in ascending order of start year. | [
"SELECT",
"name",
"FROM",
"club",
"ORDER",
"BY",
"Start_year",
"ASC"
] | [
"select",
"name",
"from",
"club",
"order",
"by",
"start_year",
"asc"
] | [
"List",
"all",
"club",
"names",
"in",
"ascending",
"order",
"of",
"start",
"year",
"."
] | [
"List",
"all",
"<mask>",
"<mask>",
"in",
"ascending",
"order",
"of",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"asc"
] |
sports_competition | SELECT name FROM club ORDER BY Start_year ASC | What are the names of all the clubs starting with the oldest? | [
"SELECT",
"name",
"FROM",
"club",
"ORDER",
"BY",
"Start_year",
"ASC"
] | [
"select",
"name",
"from",
"club",
"order",
"by",
"start_year",
"asc"
] | [
"What",
"are",
"the",
"names",
"of",
"all",
"the",
"clubs",
"starting",
"with",
"the",
"oldest",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"all",
"the",
"<mask>",
"<mask>",
"with",
"the",
"oldest",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"asc"
] |
sports_competition | SELECT name FROM club ORDER BY name DESC | List all club names in descending alphabetical order. | [
"SELECT",
"name",
"FROM",
"club",
"ORDER",
"BY",
"name",
"DESC"
] | [
"select",
"name",
"from",
"club",
"order",
"by",
"name",
"desc"
] | [
"List",
"all",
"club",
"names",
"in",
"descending",
"alphabetical",
"order",
"."
] | [
"List",
"all",
"<mask>",
"<mask>",
"in",
"descending",
"alphabetical",
"order",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"desc"
] |
sports_competition | SELECT name FROM club ORDER BY name DESC | What are the names of all the clubs ordered in descending alphabetical order? | [
"SELECT",
"name",
"FROM",
"club",
"ORDER",
"BY",
"name",
"DESC"
] | [
"select",
"name",
"from",
"club",
"order",
"by",
"name",
"desc"
] | [
"What",
"are",
"the",
"names",
"of",
"all",
"the",
"clubs",
"ordered",
"in",
"descending",
"alphabetical",
"order",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"all",
"the",
"<mask>",
"ordered",
"in",
"descending",
"alphabetical",
"order",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"desc"
] |
sports_competition | SELECT T1.name , T2.Player_id FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID | Please show the names and the players of clubs. | [
"SELECT",
"T1.name",
",",
"T2.Player_id",
"FROM",
"club",
"AS",
"T1",
"JOIN",
"player",
"AS",
"T2",
"ON",
"T1.Club_ID",
"=",
"T2.Club_ID"
] | [
"select",
"t1",
".",
"name",
",",
"t2",
".",
"player_id",
"from",
"club",
"as",
"t1",
"join",
"player",
"as",
"t2",
"on",
"t1",
".",
"club_id",
"=",
"t2",
".",
"club_id"
] | [
"Please",
"show",
"the",
"names",
"and",
"the",
"players",
"of",
"clubs",
"."
] | [
"Please",
"show",
"the",
"<mask>",
"and",
"the",
"<mask>",
"of",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>"
] |
sports_competition | SELECT T1.name , T2.Player_id FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID | What are the names and players of all the clubs? | [
"SELECT",
"T1.name",
",",
"T2.Player_id",
"FROM",
"club",
"AS",
"T1",
"JOIN",
"player",
"AS",
"T2",
"ON",
"T1.Club_ID",
"=",
"T2.Club_ID"
] | [
"select",
"t1",
".",
"name",
",",
"t2",
".",
"player_id",
"from",
"club",
"as",
"t1",
"join",
"player",
"as",
"t2",
"on",
"t1",
".",
"club_id",
"=",
"t2",
".",
"club_id"
] | [
"What",
"are",
"the",
"names",
"and",
"players",
"of",
"all",
"the",
"clubs",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"and",
"<mask>",
"of",
"all",
"the",
"<mask>",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
",",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>"
] |
sports_competition | SELECT T1.name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T2.Position = "Right Wing" | Show the names of clubs that have players with position "Right Wing". | [
"SELECT",
"T1.name",
"FROM",
"club",
"AS",
"T1",
"JOIN",
"player",
"AS",
"T2",
"ON",
"T1.Club_ID",
"=",
"T2.Club_ID",
"WHERE",
"T2.Position",
"=",
"``",
"Right",
"Wing",
"''"
] | [
"select",
"t1",
".",
"name",
"from",
"club",
"as",
"t1",
"join",
"player",
"as",
"t2",
"on",
"t1",
".",
"club_id",
"=",
"t2",
".",
"club_id",
"where",
"t2",
".",
"position",
"=",
"value"
] | [
"Show",
"the",
"names",
"of",
"clubs",
"that",
"have",
"players",
"with",
"position",
"``",
"Right",
"Wing",
"''",
"."
] | [
"Show",
"the",
"<mask>",
"of",
"<mask>",
"that",
"have",
"<mask>",
"with",
"<mask>",
"``",
"Right",
"Wing",
"''",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT T1.name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T2.Position = "Right Wing" | What are the names of the clubs that have players in the position of "Right Wing"? | [
"SELECT",
"T1.name",
"FROM",
"club",
"AS",
"T1",
"JOIN",
"player",
"AS",
"T2",
"ON",
"T1.Club_ID",
"=",
"T2.Club_ID",
"WHERE",
"T2.Position",
"=",
"``",
"Right",
"Wing",
"''"
] | [
"select",
"t1",
".",
"name",
"from",
"club",
"as",
"t1",
"join",
"player",
"as",
"t2",
"on",
"t1",
".",
"club_id",
"=",
"t2",
".",
"club_id",
"where",
"t2",
".",
"position",
"=",
"value"
] | [
"What",
"are",
"the",
"names",
"of",
"the",
"clubs",
"that",
"have",
"players",
"in",
"the",
"position",
"of",
"``",
"Right",
"Wing",
"''",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"the",
"<mask>",
"that",
"have",
"<mask>",
"in",
"the",
"<mask>",
"of",
"``",
"Right",
"Wing",
"''",
"?"
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT avg(T2.Points) FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T1.name = "AIB" | What is the average points of players from club with name "AIB". | [
"SELECT",
"avg",
"(",
"T2.Points",
")",
"FROM",
"club",
"AS",
"T1",
"JOIN",
"player",
"AS",
"T2",
"ON",
"T1.Club_ID",
"=",
"T2.Club_ID",
"WHERE",
"T1.name",
"=",
"``",
"AIB",
"''"
] | [
"select",
"avg",
"(",
"t2",
".",
"points",
")",
"from",
"club",
"as",
"t1",
"join",
"player",
"as",
"t2",
"on",
"t1",
".",
"club_id",
"=",
"t2",
".",
"club_id",
"where",
"t1",
".",
"name",
"=",
"value"
] | [
"What",
"is",
"the",
"average",
"points",
"of",
"players",
"from",
"club",
"with",
"name",
"``",
"AIB",
"''",
"."
] | [
"What",
"is",
"the",
"average",
"points",
"of",
"<mask>",
"from",
"<mask>",
"with",
"<mask>",
"``",
"AIB",
"''",
"."
] | [
"select",
"avg",
"(",
"<mask>",
".",
"<mask>",
")",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT avg(T2.Points) FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T1.name = "AIB" | What is the average number of points for players from the "AIB" club? | [
"SELECT",
"avg",
"(",
"T2.Points",
")",
"FROM",
"club",
"AS",
"T1",
"JOIN",
"player",
"AS",
"T2",
"ON",
"T1.Club_ID",
"=",
"T2.Club_ID",
"WHERE",
"T1.name",
"=",
"``",
"AIB",
"''"
] | [
"select",
"avg",
"(",
"t2",
".",
"points",
")",
"from",
"club",
"as",
"t1",
"join",
"player",
"as",
"t2",
"on",
"t1",
".",
"club_id",
"=",
"t2",
".",
"club_id",
"where",
"t1",
".",
"name",
"=",
"value"
] | [
"What",
"is",
"the",
"average",
"number",
"of",
"points",
"for",
"players",
"from",
"the",
"``",
"AIB",
"''",
"club",
"?"
] | [
"What",
"is",
"the",
"average",
"number",
"of",
"points",
"for",
"<mask>",
"from",
"the",
"``",
"AIB",
"''",
"<mask>",
"?"
] | [
"select",
"avg",
"(",
"<mask>",
".",
"<mask>",
")",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT POSITION , avg(Points) FROM player GROUP BY POSITION | List the position of players and the average number of points of players of each position. | [
"SELECT",
"POSITION",
",",
"avg",
"(",
"Points",
")",
"FROM",
"player",
"GROUP",
"BY",
"POSITION"
] | [
"select",
"position",
",",
"avg",
"(",
"points",
")",
"from",
"player",
"group",
"by",
"position"
] | [
"List",
"the",
"position",
"of",
"players",
"and",
"the",
"average",
"number",
"of",
"points",
"of",
"players",
"of",
"each",
"position",
"."
] | [
"List",
"the",
"<mask>",
"of",
"<mask>",
"and",
"the",
"average",
"number",
"of",
"points",
"of",
"<mask>",
"of",
"each",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
"group",
"by",
"<mask>"
] |
sports_competition | SELECT POSITION , avg(Points) FROM player GROUP BY POSITION | For each position, what is the average number of points for players in that position? | [
"SELECT",
"POSITION",
",",
"avg",
"(",
"Points",
")",
"FROM",
"player",
"GROUP",
"BY",
"POSITION"
] | [
"select",
"position",
",",
"avg",
"(",
"points",
")",
"from",
"player",
"group",
"by",
"position"
] | [
"For",
"each",
"position",
",",
"what",
"is",
"the",
"average",
"number",
"of",
"points",
"for",
"players",
"in",
"that",
"position",
"?"
] | [
"For",
"each",
"<mask>",
",",
"what",
"is",
"the",
"average",
"number",
"of",
"points",
"for",
"<mask>",
"in",
"that",
"<mask>",
"?"
] | [
"select",
"<mask>",
",",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
"group",
"by",
"<mask>"
] |
sports_competition | SELECT POSITION FROM player GROUP BY name HAVING avg(Points) >= 20 | List the position of players with average number of points scored by players of that position bigger than 20. | [
"SELECT",
"POSITION",
"FROM",
"player",
"GROUP",
"BY",
"name",
"HAVING",
"avg",
"(",
"Points",
")",
">",
"=",
"20"
] | [
"select",
"position",
"from",
"player",
"group",
"by",
"name",
"having",
"avg",
"(",
"points",
")",
">",
"=",
"value"
] | [
"List",
"the",
"position",
"of",
"players",
"with",
"average",
"number",
"of",
"points",
"scored",
"by",
"players",
"of",
"that",
"position",
"bigger",
"than",
"20",
"."
] | [
"List",
"the",
"<mask>",
"of",
"<mask>",
"with",
"average",
"number",
"of",
"points",
"<mask>",
"by",
"<mask>",
"of",
"that",
"<mask>",
"bigger",
"than",
"<unk>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"group",
"by",
"<mask>",
"<mask>",
"avg",
"(",
"<mask>",
")",
">",
"=",
"<unk>"
] |
sports_competition | SELECT POSITION FROM player GROUP BY name HAVING avg(Points) >= 20 | What are the positions of players whose average number of points scored by that position is larger than 20? | [
"SELECT",
"POSITION",
"FROM",
"player",
"GROUP",
"BY",
"name",
"HAVING",
"avg",
"(",
"Points",
")",
">",
"=",
"20"
] | [
"select",
"position",
"from",
"player",
"group",
"by",
"name",
"having",
"avg",
"(",
"points",
")",
">",
"=",
"value"
] | [
"What",
"are",
"the",
"positions",
"of",
"players",
"whose",
"average",
"number",
"of",
"points",
"scored",
"by",
"that",
"position",
"is",
"larger",
"than",
"20",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"<mask>",
"whose",
"average",
"number",
"of",
"points",
"<mask>",
"by",
"that",
"<mask>",
"is",
"larger",
"than",
"<unk>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"group",
"by",
"<mask>",
"<mask>",
"avg",
"(",
"<mask>",
")",
">",
"=",
"<unk>"
] |
sports_competition | SELECT Competition_type , COUNT(*) FROM competition GROUP BY Competition_type | List the types of competition and the number of competitions of each type. | [
"SELECT",
"Competition_type",
",",
"COUNT",
"(",
"*",
")",
"FROM",
"competition",
"GROUP",
"BY",
"Competition_type"
] | [
"select",
"competition_type",
",",
"count",
"(",
"*",
")",
"from",
"competition",
"group",
"by",
"competition_type"
] | [
"List",
"the",
"types",
"of",
"competition",
"and",
"the",
"number",
"of",
"competitions",
"of",
"each",
"type",
"."
] | [
"List",
"the",
"<mask>",
"of",
"<mask>",
"and",
"the",
"number",
"of",
"<mask>",
"of",
"each",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"count",
"(",
"*",
")",
"from",
"<mask>",
"group",
"by",
"<mask>"
] |
sports_competition | SELECT Competition_type , COUNT(*) FROM competition GROUP BY Competition_type | What are the types of competition and number of competitions for that type? | [
"SELECT",
"Competition_type",
",",
"COUNT",
"(",
"*",
")",
"FROM",
"competition",
"GROUP",
"BY",
"Competition_type"
] | [
"select",
"competition_type",
",",
"count",
"(",
"*",
")",
"from",
"competition",
"group",
"by",
"competition_type"
] | [
"What",
"are",
"the",
"types",
"of",
"competition",
"and",
"number",
"of",
"competitions",
"for",
"that",
"type",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"<mask>",
"and",
"number",
"of",
"<mask>",
"for",
"that",
"<mask>",
"?"
] | [
"select",
"<mask>",
",",
"count",
"(",
"*",
")",
"from",
"<mask>",
"group",
"by",
"<mask>"
] |
sports_competition | SELECT Competition_type FROM competition GROUP BY Competition_type ORDER BY COUNT(*) DESC LIMIT 1 | List the most common type of competition. | [
"SELECT",
"Competition_type",
"FROM",
"competition",
"GROUP",
"BY",
"Competition_type",
"ORDER",
"BY",
"COUNT",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
] | [
"select",
"competition_type",
"from",
"competition",
"group",
"by",
"competition_type",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"value"
] | [
"List",
"the",
"most",
"common",
"type",
"of",
"competition",
"."
] | [
"List",
"the",
"most",
"common",
"<mask>",
"of",
"<mask>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"group",
"by",
"<mask>",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"<unk>"
] |
sports_competition | SELECT Competition_type FROM competition GROUP BY Competition_type ORDER BY COUNT(*) DESC LIMIT 1 | What is the most common competition type? | [
"SELECT",
"Competition_type",
"FROM",
"competition",
"GROUP",
"BY",
"Competition_type",
"ORDER",
"BY",
"COUNT",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
] | [
"select",
"competition_type",
"from",
"competition",
"group",
"by",
"competition_type",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"value"
] | [
"What",
"is",
"the",
"most",
"common",
"competition",
"type",
"?"
] | [
"What",
"is",
"the",
"most",
"common",
"<mask>",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"group",
"by",
"<mask>",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"<unk>"
] |
sports_competition | SELECT Competition_type FROM competition GROUP BY Competition_type HAVING COUNT(*) <= 5 | List the types of competition that have at most five competitions of that type. | [
"SELECT",
"Competition_type",
"FROM",
"competition",
"GROUP",
"BY",
"Competition_type",
"HAVING",
"COUNT",
"(",
"*",
")",
"<",
"=",
"5"
] | [
"select",
"competition_type",
"from",
"competition",
"group",
"by",
"competition_type",
"having",
"count",
"(",
"*",
")",
"<",
"=",
"value"
] | [
"List",
"the",
"types",
"of",
"competition",
"that",
"have",
"at",
"most",
"five",
"competitions",
"of",
"that",
"type",
"."
] | [
"List",
"the",
"<mask>",
"of",
"<mask>",
"that",
"have",
"at",
"most",
"five",
"<mask>",
"of",
"that",
"<mask>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"group",
"by",
"<mask>",
"<mask>",
"count",
"(",
"*",
")",
"<",
"=",
"<unk>"
] |
sports_competition | SELECT Competition_type FROM competition GROUP BY Competition_type HAVING COUNT(*) <= 5 | What are the types of competition that have most 5 competitions for that type? | [
"SELECT",
"Competition_type",
"FROM",
"competition",
"GROUP",
"BY",
"Competition_type",
"HAVING",
"COUNT",
"(",
"*",
")",
"<",
"=",
"5"
] | [
"select",
"competition_type",
"from",
"competition",
"group",
"by",
"competition_type",
"having",
"count",
"(",
"*",
")",
"<",
"=",
"value"
] | [
"What",
"are",
"the",
"types",
"of",
"competition",
"that",
"have",
"most",
"5",
"competitions",
"for",
"that",
"type",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"<mask>",
"that",
"have",
"most",
"<unk>",
"<mask>",
"for",
"that",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"group",
"by",
"<mask>",
"<mask>",
"count",
"(",
"*",
")",
"<",
"=",
"<unk>"
] |
sports_competition | SELECT name FROM CLub WHERE Club_ID NOT IN (SELECT Club_ID FROM player) | List the names of clubs that do not have any players. | [
"SELECT",
"name",
"FROM",
"CLub",
"WHERE",
"Club_ID",
"NOT",
"IN",
"(",
"SELECT",
"Club_ID",
"FROM",
"player",
")"
] | [
"select",
"name",
"from",
"club",
"where",
"club_id",
"not",
"in",
"(",
"select",
"club_id",
"from",
"player",
")"
] | [
"List",
"the",
"names",
"of",
"clubs",
"that",
"do",
"not",
"have",
"any",
"players",
"."
] | [
"List",
"the",
"<mask>",
"of",
"<mask>",
"that",
"do",
"not",
"have",
"any",
"<mask>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"not",
"in",
"(",
"select",
"<mask>",
"from",
"<mask>",
")"
] |
sports_competition | SELECT name FROM CLub WHERE Club_ID NOT IN (SELECT Club_ID FROM player) | What are the names of all clubs that do not have any players? | [
"SELECT",
"name",
"FROM",
"CLub",
"WHERE",
"Club_ID",
"NOT",
"IN",
"(",
"SELECT",
"Club_ID",
"FROM",
"player",
")"
] | [
"select",
"name",
"from",
"club",
"where",
"club_id",
"not",
"in",
"(",
"select",
"club_id",
"from",
"player",
")"
] | [
"What",
"are",
"the",
"names",
"of",
"all",
"clubs",
"that",
"do",
"not",
"have",
"any",
"players",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"all",
"<mask>",
"that",
"do",
"not",
"have",
"any",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"not",
"in",
"(",
"select",
"<mask>",
"from",
"<mask>",
")"
] |
sports_competition | SELECT POSITION FROM player WHERE Points > 20 INTERSECT SELECT POSITION FROM player WHERE Points < 10 | What are the positions with both players having more than 20 points and less than 10 points. | [
"SELECT",
"POSITION",
"FROM",
"player",
"WHERE",
"Points",
">",
"20",
"INTERSECT",
"SELECT",
"POSITION",
"FROM",
"player",
"WHERE",
"Points",
"<",
"10"
] | [
"select",
"position",
"from",
"player",
"where",
"points",
">",
"value",
"intersect",
"select",
"position",
"from",
"player",
"where",
"points",
"<",
"value"
] | [
"What",
"are",
"the",
"positions",
"with",
"both",
"players",
"having",
"more",
"than",
"20",
"points",
"and",
"less",
"than",
"10",
"points",
"."
] | [
"What",
"are",
"the",
"<mask>",
"with",
"both",
"<mask>",
"having",
"more",
"than",
"<unk>",
"points",
"and",
"less",
"than",
"<unk>",
"points",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
">",
"<unk>",
"intersect",
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>"
] |
sports_competition | SELECT POSITION FROM player WHERE Points > 20 INTERSECT SELECT POSITION FROM player WHERE Points < 10 | What are the positions of both players that have more than 20 20 points and less than 10 points? | [
"SELECT",
"POSITION",
"FROM",
"player",
"WHERE",
"Points",
">",
"20",
"INTERSECT",
"SELECT",
"POSITION",
"FROM",
"player",
"WHERE",
"Points",
"<",
"10"
] | [
"select",
"position",
"from",
"player",
"where",
"points",
">",
"value",
"intersect",
"select",
"position",
"from",
"player",
"where",
"points",
"<",
"value"
] | [
"What",
"are",
"the",
"positions",
"of",
"both",
"players",
"that",
"have",
"more",
"than",
"20",
"20",
"points",
"and",
"less",
"than",
"10",
"points",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"both",
"<mask>",
"that",
"have",
"more",
"than",
"<unk>",
"<unk>",
"points",
"and",
"less",
"than",
"<unk>",
"points",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
">",
"<unk>",
"intersect",
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>"
] |
sports_competition | SELECT sum(Points) FROM player | Show total points of all players. | [
"SELECT",
"sum",
"(",
"Points",
")",
"FROM",
"player"
] | [
"select",
"sum",
"(",
"points",
")",
"from",
"player"
] | [
"Show",
"total",
"points",
"of",
"all",
"players",
"."
] | [
"Show",
"<mask>",
"points",
"of",
"all",
"<mask>",
"."
] | [
"select",
"sum",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT sum(Points) FROM player | What is the total number of points for all players? | [
"SELECT",
"sum",
"(",
"Points",
")",
"FROM",
"player"
] | [
"select",
"sum",
"(",
"points",
")",
"from",
"player"
] | [
"What",
"is",
"the",
"total",
"number",
"of",
"points",
"for",
"all",
"players",
"?"
] | [
"What",
"is",
"the",
"<mask>",
"number",
"of",
"points",
"for",
"all",
"<mask>",
"?"
] | [
"select",
"sum",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT count(DISTINCT POSITION) FROM player | how many different positions are there? | [
"SELECT",
"count",
"(",
"DISTINCT",
"POSITION",
")",
"FROM",
"player"
] | [
"select",
"count",
"(",
"distinct",
"position",
")",
"from",
"player"
] | [
"how",
"many",
"different",
"positions",
"are",
"there",
"?"
] | [
"how",
"many",
"different",
"<mask>",
"are",
"there",
"?"
] | [
"select",
"count",
"(",
"distinct",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT count(DISTINCT POSITION) FROM player | How many different position for players are listed? | [
"SELECT",
"count",
"(",
"DISTINCT",
"POSITION",
")",
"FROM",
"player"
] | [
"select",
"count",
"(",
"distinct",
"position",
")",
"from",
"player"
] | [
"How",
"many",
"different",
"position",
"for",
"players",
"are",
"listed",
"?"
] | [
"How",
"many",
"different",
"<mask>",
"for",
"<mask>",
"are",
"listed",
"?"
] | [
"select",
"count",
"(",
"distinct",
"<mask>",
")",
"from",
"<mask>"
] |
sports_competition | SELECT name FROM player WHERE points > (SELECT avg(points) FROM player) | what are the name of players who get more than the average points. | [
"SELECT",
"name",
"FROM",
"player",
"WHERE",
"points",
">",
"(",
"SELECT",
"avg",
"(",
"points",
")",
"FROM",
"player",
")"
] | [
"select",
"name",
"from",
"player",
"where",
"points",
">",
"(",
"select",
"avg",
"(",
"points",
")",
"from",
"player",
")"
] | [
"what",
"are",
"the",
"name",
"of",
"players",
"who",
"get",
"more",
"than",
"the",
"average",
"points",
"."
] | [
"what",
"are",
"the",
"<mask>",
"of",
"<mask>",
"who",
"get",
"more",
"than",
"the",
"average",
"points",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
">",
"(",
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
")"
] |
sports_competition | SELECT name FROM player WHERE points > (SELECT avg(points) FROM player) | What are the names of all players that got more than the average number of points? | [
"SELECT",
"name",
"FROM",
"player",
"WHERE",
"points",
">",
"(",
"SELECT",
"avg",
"(",
"points",
")",
"FROM",
"player",
")"
] | [
"select",
"name",
"from",
"player",
"where",
"points",
">",
"(",
"select",
"avg",
"(",
"points",
")",
"from",
"player",
")"
] | [
"What",
"are",
"the",
"names",
"of",
"all",
"players",
"that",
"got",
"more",
"than",
"the",
"average",
"number",
"of",
"points",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"of",
"all",
"<mask>",
"that",
"got",
"more",
"than",
"the",
"average",
"number",
"of",
"points",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
">",
"(",
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
")"
] |
sports_competition | SELECT count(*) , POSITION FROM player WHERE points < 30 GROUP BY POSITION | find the number of players whose points are lower than 30 in each position. | [
"SELECT",
"count",
"(",
"*",
")",
",",
"POSITION",
"FROM",
"player",
"WHERE",
"points",
"<",
"30",
"GROUP",
"BY",
"POSITION"
] | [
"select",
"count",
"(",
"*",
")",
",",
"position",
"from",
"player",
"where",
"points",
"<",
"value",
"group",
"by",
"position"
] | [
"find",
"the",
"number",
"of",
"players",
"whose",
"points",
"are",
"lower",
"than",
"30",
"in",
"each",
"position",
"."
] | [
"find",
"the",
"number",
"of",
"<mask>",
"whose",
"points",
"are",
"lower",
"than",
"<unk>",
"in",
"each",
"<mask>",
"."
] | [
"select",
"count",
"(",
"*",
")",
",",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>",
"group",
"by",
"<mask>"
] |
sports_competition | SELECT count(*) , POSITION FROM player WHERE points < 30 GROUP BY POSITION | What is the number of players who have points less than 30 for each position? | [
"SELECT",
"count",
"(",
"*",
")",
",",
"POSITION",
"FROM",
"player",
"WHERE",
"points",
"<",
"30",
"GROUP",
"BY",
"POSITION"
] | [
"select",
"count",
"(",
"*",
")",
",",
"position",
"from",
"player",
"where",
"points",
"<",
"value",
"group",
"by",
"position"
] | [
"What",
"is",
"the",
"number",
"of",
"players",
"who",
"have",
"points",
"less",
"than",
"30",
"for",
"each",
"position",
"?"
] | [
"What",
"is",
"the",
"number",
"of",
"<mask>",
"who",
"have",
"points",
"less",
"than",
"<unk>",
"for",
"each",
"<mask>",
"?"
] | [
"select",
"count",
"(",
"*",
")",
",",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>",
"group",
"by",
"<mask>"
] |
sports_competition | SELECT country FROM competition WHERE competition_type = 'Tournament' GROUP BY country ORDER BY count(*) DESC LIMIT 1 | which country did participated in the most number of Tournament competitions? | [
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Tournament",
"'",
"GROUP",
"BY",
"country",
"ORDER",
"BY",
"count",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
] | [
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value",
"group",
"by",
"country",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"value"
] | [
"which",
"country",
"did",
"participated",
"in",
"the",
"most",
"number",
"of",
"Tournament",
"competitions",
"?"
] | [
"which",
"<mask>",
"did",
"participated",
"in",
"the",
"most",
"number",
"of",
"Tournament",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>",
"group",
"by",
"<mask>",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"<unk>"
] |
sports_competition | SELECT country FROM competition WHERE competition_type = 'Tournament' GROUP BY country ORDER BY count(*) DESC LIMIT 1 | what is the name of the country that participated in the most tournament competitions? | [
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Tournament",
"'",
"GROUP",
"BY",
"country",
"ORDER",
"BY",
"count",
"(",
"*",
")",
"DESC",
"LIMIT",
"1"
] | [
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value",
"group",
"by",
"country",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"value"
] | [
"what",
"is",
"the",
"name",
"of",
"the",
"country",
"that",
"participated",
"in",
"the",
"most",
"tournament",
"competitions",
"?"
] | [
"what",
"is",
"the",
"<mask>",
"of",
"the",
"<mask>",
"that",
"participated",
"in",
"the",
"most",
"tournament",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>",
"group",
"by",
"<mask>",
"order",
"by",
"count",
"(",
"*",
")",
"desc",
"limit",
"<unk>"
] |
sports_competition | SELECT country FROM competition WHERE competition_type = 'Friendly' INTERSECT SELECT country FROM competition WHERE competition_type = 'Tournament' | which countries did participated in both Friendly and Tournament type competitions. | [
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Friendly",
"'",
"INTERSECT",
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Tournament",
"'"
] | [
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value",
"intersect",
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value"
] | [
"which",
"countries",
"did",
"participated",
"in",
"both",
"Friendly",
"and",
"Tournament",
"type",
"competitions",
"."
] | [
"which",
"<mask>",
"did",
"participated",
"in",
"both",
"Friendly",
"and",
"Tournament",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>",
"intersect",
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT country FROM competition WHERE competition_type = 'Friendly' INTERSECT SELECT country FROM competition WHERE competition_type = 'Tournament' | What are the countries that participated in both friendly and tournament type competitions? | [
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Friendly",
"'",
"INTERSECT",
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Tournament",
"'"
] | [
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value",
"intersect",
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value"
] | [
"What",
"are",
"the",
"countries",
"that",
"participated",
"in",
"both",
"friendly",
"and",
"tournament",
"type",
"competitions",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"that",
"participated",
"in",
"both",
"friendly",
"and",
"tournament",
"<mask>",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>",
"intersect",
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly' | Find the countries that have never participated in any competition with Friendly type. | [
"SELECT",
"country",
"FROM",
"competition",
"EXCEPT",
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Friendly",
"'"
] | [
"select",
"country",
"from",
"competition",
"except",
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value"
] | [
"Find",
"the",
"countries",
"that",
"have",
"never",
"participated",
"in",
"any",
"competition",
"with",
"Friendly",
"type",
"."
] | [
"Find",
"the",
"<mask>",
"that",
"have",
"never",
"participated",
"in",
"any",
"<mask>",
"with",
"Friendly",
"<mask>",
"."
] | [
"select",
"<mask>",
"from",
"<mask>",
"except",
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>"
] |
sports_competition | SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly' | What are the countries that have never participated in any friendly-type competitions? | [
"SELECT",
"country",
"FROM",
"competition",
"EXCEPT",
"SELECT",
"country",
"FROM",
"competition",
"WHERE",
"competition_type",
"=",
"'Friendly",
"'"
] | [
"select",
"country",
"from",
"competition",
"except",
"select",
"country",
"from",
"competition",
"where",
"competition_type",
"=",
"value"
] | [
"What",
"are",
"the",
"countries",
"that",
"have",
"never",
"participated",
"in",
"any",
"friendly-type",
"competitions",
"?"
] | [
"What",
"are",
"the",
"<mask>",
"that",
"have",
"never",
"participated",
"in",
"any",
"friendly-type",
"<mask>",
"?"
] | [
"select",
"<mask>",
"from",
"<mask>",
"except",
"select",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
"=",
"<unk>"
] |
manufacturer | SELECT sum(num_of_component) FROM furniture | How many furniture components are there in total? | [
"SELECT",
"sum",
"(",
"num_of_component",
")",
"FROM",
"furniture"
] | [
"select",
"sum",
"(",
"num_of_component",
")",
"from",
"furniture"
] | [
"How",
"many",
"furniture",
"components",
"are",
"there",
"in",
"total",
"?"
] | [
"How",
"many",
"<mask>",
"<mask>",
"are",
"there",
"in",
"total",
"?"
] | [
"select",
"sum",
"(",
"<mask>",
")",
"from",
"<mask>"
] |
manufacturer | SELECT name , furniture_id FROM furniture ORDER BY market_rate DESC LIMIT 1 | Return the name and id of the furniture with the highest market rate. | [
"SELECT",
"name",
",",
"furniture_id",
"FROM",
"furniture",
"ORDER",
"BY",
"market_rate",
"DESC",
"LIMIT",
"1"
] | [
"select",
"name",
",",
"furniture_id",
"from",
"furniture",
"order",
"by",
"market_rate",
"desc",
"limit",
"value"
] | [
"Return",
"the",
"name",
"and",
"id",
"of",
"the",
"furniture",
"with",
"the",
"highest",
"market",
"rate",
"."
] | [
"Return",
"the",
"<mask>",
"and",
"id",
"of",
"the",
"<mask>",
"with",
"the",
"highest",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"desc",
"limit",
"<unk>"
] |
manufacturer | SELECT sum(market_rate) FROM furniture ORDER BY market_rate DESC LIMIT 2 | find the total market rate of the furnitures that have the top 2 market shares. | [
"SELECT",
"sum",
"(",
"market_rate",
")",
"FROM",
"furniture",
"ORDER",
"BY",
"market_rate",
"DESC",
"LIMIT",
"2"
] | [
"select",
"sum",
"(",
"market_rate",
")",
"from",
"furniture",
"order",
"by",
"market_rate",
"desc",
"limit",
"value"
] | [
"find",
"the",
"total",
"market",
"rate",
"of",
"the",
"furnitures",
"that",
"have",
"the",
"top",
"2",
"market",
"shares",
"."
] | [
"find",
"the",
"total",
"<mask>",
"<mask>",
"of",
"the",
"<mask>",
"that",
"have",
"the",
"top",
"<unk>",
"<mask>",
"shares",
"."
] | [
"select",
"sum",
"(",
"<mask>",
")",
"from",
"<mask>",
"order",
"by",
"<mask>",
"desc",
"limit",
"<unk>"
] |
manufacturer | SELECT Num_of_Component , name FROM furniture WHERE Num_of_Component > 10 | Find the component amounts and names of all furnitures that have more than 10 components. | [
"SELECT",
"Num_of_Component",
",",
"name",
"FROM",
"furniture",
"WHERE",
"Num_of_Component",
">",
"10"
] | [
"select",
"num_of_component",
",",
"name",
"from",
"furniture",
"where",
"num_of_component",
">",
"value"
] | [
"Find",
"the",
"component",
"amounts",
"and",
"names",
"of",
"all",
"furnitures",
"that",
"have",
"more",
"than",
"10",
"components",
"."
] | [
"Find",
"the",
"<mask>",
"amounts",
"and",
"<mask>",
"of",
"all",
"<mask>",
"that",
"have",
"more",
"than",
"<unk>",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
">",
"<unk>"
] |
manufacturer | SELECT name , Num_of_Component FROM furniture ORDER BY market_rate LIMIT 1 | Find the name and component amount of the least popular furniture. | [
"SELECT",
"name",
",",
"Num_of_Component",
"FROM",
"furniture",
"ORDER",
"BY",
"market_rate",
"LIMIT",
"1"
] | [
"select",
"name",
",",
"num_of_component",
"from",
"furniture",
"order",
"by",
"market_rate",
"limit",
"value"
] | [
"Find",
"the",
"name",
"and",
"component",
"amount",
"of",
"the",
"least",
"popular",
"furniture",
"."
] | [
"Find",
"the",
"<mask>",
"and",
"<mask>",
"amount",
"of",
"the",
"least",
"popular",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"limit",
"<unk>"
] |
manufacturer | SELECT t1.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID WHERE t2.Price_in_Dollar < (SELECT max(Price_in_Dollar) FROM furniture_manufacte) | Find the names of furnitures whose prices are lower than the highest price. | [
"SELECT",
"t1.name",
"FROM",
"furniture",
"AS",
"t1",
"JOIN",
"furniture_manufacte",
"AS",
"t2",
"ON",
"t1.Furniture_ID",
"=",
"t2.Furniture_ID",
"WHERE",
"t2.Price_in_Dollar",
"<",
"(",
"SELECT",
"max",
"(",
"Price_in_Dollar",
")",
"FROM",
"furniture_manufacte",
")... | [
"select",
"t1",
".",
"name",
"from",
"furniture",
"as",
"t1",
"join",
"furniture_manufacte",
"as",
"t2",
"on",
"t1",
".",
"furniture_id",
"=",
"t2",
".",
"furniture_id",
"where",
"t2",
".",
"price_in_dollar",
"<",
"(",
"select",
"max",
"(",
"price_in_dollar"... | [
"Find",
"the",
"names",
"of",
"furnitures",
"whose",
"prices",
"are",
"lower",
"than",
"the",
"highest",
"price",
"."
] | [
"Find",
"the",
"<mask>",
"of",
"<mask>",
"whose",
"<mask>",
"are",
"lower",
"than",
"the",
"highest",
"<mask>",
"."
] | [
"select",
"<mask>",
".",
"<mask>",
"from",
"<mask>",
"as",
"<mask>",
"join",
"<mask>",
"as",
"<mask>",
"on",
"<mask>",
".",
"<mask>",
"=",
"<mask>",
".",
"<mask>",
"where",
"<mask>",
".",
"<mask>",
"<",
"(",
"select",
"max",
"(",
"<mask>",
")",
"from",
... |
manufacturer | SELECT open_year , name FROM manufacturer ORDER BY num_of_shops DESC LIMIT 1 | Which manufacturer has the most number of shops? List its name and year of opening. | [
"SELECT",
"open_year",
",",
"name",
"FROM",
"manufacturer",
"ORDER",
"BY",
"num_of_shops",
"DESC",
"LIMIT",
"1"
] | [
"select",
"open_year",
",",
"name",
"from",
"manufacturer",
"order",
"by",
"num_of_shops",
"desc",
"limit",
"value"
] | [
"Which",
"manufacturer",
"has",
"the",
"most",
"number",
"of",
"shops",
"?",
"List",
"its",
"name",
"and",
"year",
"of",
"opening",
"."
] | [
"Which",
"<mask>",
"has",
"the",
"most",
"number",
"of",
"shops",
"?",
"List",
"its",
"<mask>",
"and",
"<mask>",
"of",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>",
"desc",
"limit",
"<unk>"
] |
manufacturer | SELECT avg(Num_of_Factories) FROM manufacturer WHERE num_of_shops > 20 | Find the average number of factories for the manufacturers that have more than 20 shops. | [
"SELECT",
"avg",
"(",
"Num_of_Factories",
")",
"FROM",
"manufacturer",
"WHERE",
"num_of_shops",
">",
"20"
] | [
"select",
"avg",
"(",
"num_of_factories",
")",
"from",
"manufacturer",
"where",
"num_of_shops",
">",
"value"
] | [
"Find",
"the",
"average",
"number",
"of",
"factories",
"for",
"the",
"manufacturers",
"that",
"have",
"more",
"than",
"20",
"shops",
"."
] | [
"Find",
"the",
"average",
"number",
"of",
"factories",
"for",
"the",
"<mask>",
"that",
"have",
"more",
"than",
"<unk>",
"shops",
"."
] | [
"select",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
"where",
"<mask>",
">",
"<unk>"
] |
manufacturer | SELECT name , manufacturer_id FROM manufacturer ORDER BY open_year | List all manufacturer names and ids ordered by their opening year. | [
"SELECT",
"name",
",",
"manufacturer_id",
"FROM",
"manufacturer",
"ORDER",
"BY",
"open_year"
] | [
"select",
"name",
",",
"manufacturer_id",
"from",
"manufacturer",
"order",
"by",
"open_year"
] | [
"List",
"all",
"manufacturer",
"names",
"and",
"ids",
"ordered",
"by",
"their",
"opening",
"year",
"."
] | [
"List",
"all",
"<mask>",
"<mask>",
"and",
"ids",
"ordered",
"by",
"their",
"<mask>",
"<mask>",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"order",
"by",
"<mask>"
] |
manufacturer | SELECT name , open_year FROM manufacturer WHERE num_of_shops > 10 OR Num_of_Factories < 10 | Give me the name and year of opening of the manufacturers that have either less than 10 factories or more than 10 shops. | [
"SELECT",
"name",
",",
"open_year",
"FROM",
"manufacturer",
"WHERE",
"num_of_shops",
">",
"10",
"OR",
"Num_of_Factories",
"<",
"10"
] | [
"select",
"name",
",",
"open_year",
"from",
"manufacturer",
"where",
"num_of_shops",
">",
"value",
"or",
"num_of_factories",
"<",
"value"
] | [
"Give",
"me",
"the",
"name",
"and",
"year",
"of",
"opening",
"of",
"the",
"manufacturers",
"that",
"have",
"either",
"less",
"than",
"10",
"factories",
"or",
"more",
"than",
"10",
"shops",
"."
] | [
"Give",
"me",
"the",
"<mask>",
"and",
"<mask>",
"of",
"<mask>",
"of",
"the",
"<mask>",
"that",
"have",
"either",
"less",
"than",
"<unk>",
"factories",
"or",
"more",
"than",
"<unk>",
"shops",
"."
] | [
"select",
"<mask>",
",",
"<mask>",
"from",
"<mask>",
"where",
"<mask>",
">",
"<unk>",
"or",
"<mask>",
"<",
"<unk>"
] |
manufacturer | SELECT max(num_of_shops) , avg(Num_of_Factories) FROM manufacturer WHERE open_year < 1990 | what is the average number of factories and maximum number of shops for manufacturers that opened before 1990. | [
"SELECT",
"max",
"(",
"num_of_shops",
")",
",",
"avg",
"(",
"Num_of_Factories",
")",
"FROM",
"manufacturer",
"WHERE",
"open_year",
"<",
"1990"
] | [
"select",
"max",
"(",
"num_of_shops",
")",
",",
"avg",
"(",
"num_of_factories",
")",
"from",
"manufacturer",
"where",
"open_year",
"<",
"value"
] | [
"what",
"is",
"the",
"average",
"number",
"of",
"factories",
"and",
"maximum",
"number",
"of",
"shops",
"for",
"manufacturers",
"that",
"opened",
"before",
"1990",
"."
] | [
"what",
"is",
"the",
"average",
"number",
"of",
"factories",
"and",
"maximum",
"number",
"of",
"shops",
"for",
"<mask>",
"that",
"<mask>",
"before",
"<unk>",
"."
] | [
"select",
"max",
"(",
"<mask>",
")",
",",
"avg",
"(",
"<mask>",
")",
"from",
"<mask>",
"where",
"<mask>",
"<",
"<unk>"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.