input
stringlengths
667
7.62k
output
stringlengths
41
600
db_id
stringlengths
3
31
query
stringlengths
18
577
question
stringlengths
3
224
schema
stringlengths
177
6.14k
primary_keys
stringlengths
16
545
foreign_keys
stringlengths
16
1.48k
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many sections does each course have?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , crs_code FROM CLASS GROUP BY crs_code</SQL_QUERY>
college_1
SELECT count(*) , crs_code FROM CLASS GROUP BY crs_code
How many sections does each course have?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the total credit does each department offer?</question> [SQL]:
<SQL_QUERY>SELECT sum(crs_credit) , dept_code FROM course GROUP BY dept_code</SQL_QUERY>
college_1
SELECT sum(crs_credit) , dept_code FROM course GROUP BY dept_code
What is the total credit does each department offer?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many credits does the department offer?</question> [SQL]:
<SQL_QUERY>SELECT sum(crs_credit) , dept_code FROM course GROUP BY dept_code</SQL_QUERY>
college_1
SELECT sum(crs_credit) , dept_code FROM course GROUP BY dept_code
How many credits does the department offer?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the number of classes offered for all class rooms that held at least 2 classes.</question> [SQL]:
<SQL_QUERY>SELECT count(*) , class_room FROM CLASS GROUP BY class_room HAVING count(*) >= 2</SQL_QUERY>
college_1
SELECT count(*) , class_room FROM CLASS GROUP BY class_room HAVING count(*) >= 2
Find the number of classes offered for all class rooms that held at least 2 classes.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>For each classroom with at least 2 classes, how many classes are offered?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , class_room FROM CLASS GROUP BY class_room HAVING count(*) >= 2</SQL_QUERY>
college_1
SELECT count(*) , class_room FROM CLASS GROUP BY class_room HAVING count(*) >= 2
For each classroom with at least 2 classes, how many classes are offered?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the number of classes in each department.</question> [SQL]:
<SQL_QUERY>SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code</SQL_QUERY>
college_1
SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code
Find the number of classes in each department.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many classes are held in each department?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code</SQL_QUERY>
college_1
SELECT count(*) , dept_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code GROUP BY dept_code
How many classes are held in each department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the number of classes in each school.</question> [SQL]:
<SQL_QUERY>SELECT count(*) , T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code</SQL_QUERY>
college_1
SELECT count(*) , T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code
Find the number of classes in each school.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many classes exist for each school?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code</SQL_QUERY>
college_1
SELECT count(*) , T3.school_code FROM CLASS AS T1 JOIN course AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T2.dept_code = T3.dept_code GROUP BY T3.school_code
How many classes exist for each school?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the number of professors for different school?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code</SQL_QUERY>
college_1
SELECT count(*) , T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code
What is the number of professors for different school?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many different professors are there for the different schools?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code</SQL_QUERY>
college_1
SELECT count(*) , T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code
How many different professors are there for the different schools?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the count and code of the job has most employees.</question> [SQL]:
<SQL_QUERY>SELECT emp_jobcode , count(*) FROM employee GROUP BY emp_jobcode ORDER BY count(*) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT emp_jobcode , count(*) FROM employee GROUP BY emp_jobcode ORDER BY count(*) DESC LIMIT 1
Find the count and code of the job has most employees.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the count and code of the job with the most employee?</question> [SQL]:
<SQL_QUERY>SELECT emp_jobcode , count(*) FROM employee GROUP BY emp_jobcode ORDER BY count(*) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT emp_jobcode , count(*) FROM employee GROUP BY emp_jobcode ORDER BY count(*) DESC LIMIT 1
What is the count and code of the job with the most employee?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Which school has the smallest amount of professors?</question> [SQL]:
<SQL_QUERY>SELECT T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code ORDER BY count(*) LIMIT 1</SQL_QUERY>
college_1
SELECT T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code ORDER BY count(*) LIMIT 1
Which school has the smallest amount of professors?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Which school has the fewest professors?</question> [SQL]:
<SQL_QUERY>SELECT T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code ORDER BY count(*) LIMIT 1</SQL_QUERY>
college_1
SELECT T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code ORDER BY count(*) LIMIT 1
Which school has the fewest professors?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the number of professors with a Ph.D. degree in each department.</question> [SQL]:
<SQL_QUERY>SELECT count(*) , dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code</SQL_QUERY>
college_1
SELECT count(*) , dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code
Find the number of professors with a Ph.D. degree in each department.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many professors have a Ph.D. in each department?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code</SQL_QUERY>
college_1
SELECT count(*) , dept_code FROM professor WHERE prof_high_degree = 'Ph.D.' GROUP BY dept_code
How many professors have a Ph.D. in each department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the number of students for each department.</question> [SQL]:
<SQL_QUERY>SELECT count(*) , dept_code FROM student GROUP BY dept_code</SQL_QUERY>
college_1
SELECT count(*) , dept_code FROM student GROUP BY dept_code
Find the number of students for each department.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many students are in each department?</question> [SQL]:
<SQL_QUERY>SELECT count(*) , dept_code FROM student GROUP BY dept_code</SQL_QUERY>
college_1
SELECT count(*) , dept_code FROM student GROUP BY dept_code
How many students are in each department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the total number of hours have done for all students in each department.</question> [SQL]:
<SQL_QUERY>SELECT sum(stu_hrs) , dept_code FROM student GROUP BY dept_code</SQL_QUERY>
college_1
SELECT sum(stu_hrs) , dept_code FROM student GROUP BY dept_code
Find the total number of hours have done for all students in each department.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many hours do the students spend studying in each department?</question> [SQL]:
<SQL_QUERY>SELECT sum(stu_hrs) , dept_code FROM student GROUP BY dept_code</SQL_QUERY>
college_1
SELECT sum(stu_hrs) , dept_code FROM student GROUP BY dept_code
How many hours do the students spend studying in each department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the max, average, and minimum gpa of all students in each department.</question> [SQL]:
<SQL_QUERY>SELECT max(stu_gpa) , avg(stu_gpa) , min(stu_gpa) , dept_code FROM student GROUP BY dept_code</SQL_QUERY>
college_1
SELECT max(stu_gpa) , avg(stu_gpa) , min(stu_gpa) , dept_code FROM student GROUP BY dept_code
Find the max, average, and minimum gpa of all students in each department.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the highest, lowest, and average student GPA for every department?</question> [SQL]:
<SQL_QUERY>SELECT max(stu_gpa) , avg(stu_gpa) , min(stu_gpa) , dept_code FROM student GROUP BY dept_code</SQL_QUERY>
college_1
SELECT max(stu_gpa) , avg(stu_gpa) , min(stu_gpa) , dept_code FROM student GROUP BY dept_code
What is the highest, lowest, and average student GPA for every department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name and the average gpa of department whose students have the highest average gpa?</question> [SQL]:
<SQL_QUERY>SELECT T2.dept_name , avg(T1.stu_gpa) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY avg(T1.stu_gpa) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T2.dept_name , avg(T1.stu_gpa) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY avg(T1.stu_gpa) DESC LIMIT 1
What is the name and the average gpa of department whose students have the highest average gpa?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Which department has the highest average student GPA, and what is the average gpa?</question> [SQL]:
<SQL_QUERY>SELECT T2.dept_name , avg(T1.stu_gpa) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY avg(T1.stu_gpa) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T2.dept_name , avg(T1.stu_gpa) FROM student AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY avg(T1.stu_gpa) DESC LIMIT 1
Which department has the highest average student GPA, and what is the average gpa?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>how many schools exist in total?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT school_code) FROM department</SQL_QUERY>
college_1
SELECT count(DISTINCT school_code) FROM department
how many schools exist in total?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many schools are there in the department?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT school_code) FROM department</SQL_QUERY>
college_1
SELECT count(DISTINCT school_code) FROM department
How many schools are there in the department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many different classes are there?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT class_code) FROM CLASS</SQL_QUERY>
college_1
SELECT count(DISTINCT class_code) FROM CLASS
How many different classes are there?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many unique classes are offered?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT class_code) FROM CLASS</SQL_QUERY>
college_1
SELECT count(DISTINCT class_code) FROM CLASS
How many unique classes are offered?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many courses are offered?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT crs_code) FROM CLASS</SQL_QUERY>
college_1
SELECT count(DISTINCT crs_code) FROM CLASS
How many courses are offered?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the number of different course codes?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT crs_code) FROM CLASS</SQL_QUERY>
college_1
SELECT count(DISTINCT crs_code) FROM CLASS
What are the number of different course codes?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many departments does the college has?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT dept_name) FROM department</SQL_QUERY>
college_1
SELECT count(DISTINCT dept_name) FROM department
How many departments does the college has?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many different departments are there?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT dept_name) FROM department</SQL_QUERY>
college_1
SELECT count(DISTINCT dept_name) FROM department
How many different departments are there?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many courses are offered by the Computer Info. Systems department?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM department AS T1 JOIN course AS T2 ON T1.dept_code = T2.dept_code WHERE dept_name = "Computer Info. Systems"</SQL_QUERY>
college_1
SELECT count(*) FROM department AS T1 JOIN course AS T2 ON T1.dept_code = T2.dept_code WHERE dept_name = "Computer Info. Systems"
How many courses are offered by the Computer Info. Systems department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many courses does the department of Computer Information Systmes offer?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM department AS T1 JOIN course AS T2 ON T1.dept_code = T2.dept_code WHERE dept_name = "Computer Info. Systems"</SQL_QUERY>
college_1
SELECT count(*) FROM department AS T1 JOIN course AS T2 ON T1.dept_code = T2.dept_code WHERE dept_name = "Computer Info. Systems"
How many courses does the department of Computer Information Systmes offer?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many sections does course ACCT-211 has?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT class_section) FROM CLASS WHERE crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT count(DISTINCT class_section) FROM CLASS WHERE crs_code = 'ACCT-211'
How many sections does course ACCT-211 has?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the number of different class sections offered in the course ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT count(DISTINCT class_section) FROM CLASS WHERE crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT count(DISTINCT class_section) FROM CLASS WHERE crs_code = 'ACCT-211'
What is the number of different class sections offered in the course ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the total credits of all classes offered by each department.</question> [SQL]:
<SQL_QUERY>SELECT sum(T1.crs_credit) , T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code</SQL_QUERY>
college_1
SELECT sum(T1.crs_credit) , T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code
Find the total credits of all classes offered by each department.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the total number of credits offered by each department?</question> [SQL]:
<SQL_QUERY>SELECT sum(T1.crs_credit) , T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code</SQL_QUERY>
college_1
SELECT sum(T1.crs_credit) , T1.dept_code FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code GROUP BY T1.dept_code
What are the total number of credits offered by each department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the name of the department that offers the largest number of credits of all classes.</question> [SQL]:
<SQL_QUERY>SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1
Find the name of the department that offers the largest number of credits of all classes.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Which department offers the most credits all together?</question> [SQL]:
<SQL_QUERY>SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1
Which department offers the most credits all together?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many students enrolled in class ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'
How many students enrolled in class ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the total number of students enrolled in ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'
What are the total number of students enrolled in ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first name of each student enrolled in class ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'
What is the first name of each student enrolled in class ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all students in course ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211'
What are the first names of all students in course ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first name of students enrolled in class ACCT-211 and got grade C?</question> [SQL]:
<SQL_QUERY>SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'</SQL_QUERY>
college_1
SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'
What is the first name of students enrolled in class ACCT-211 and got grade C?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all students who took ACCT-211 and received a C?</question> [SQL]:
<SQL_QUERY>SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'</SQL_QUERY>
college_1
SELECT T3.stu_fname FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T2.stu_num = T3.stu_num WHERE T1.crs_code = 'ACCT-211' AND T2.enroll_grade = 'C'
What are the first names of all students who took ACCT-211 and received a C?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the total number of employees.</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM employee</SQL_QUERY>
college_1
SELECT count(*) FROM employee
Find the total number of employees.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many employees are there all together?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM employee</SQL_QUERY>
college_1
SELECT count(*) FROM employee
How many employees are there all together?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many professors do have a Ph.D. degree?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.'</SQL_QUERY>
college_1
SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.'
How many professors do have a Ph.D. degree?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the total number of professors with a Ph.D. ?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.'</SQL_QUERY>
college_1
SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.'
What is the total number of professors with a Ph.D. ?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many students are enrolled in the class taught by some professor from the accounting department?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'</SQL_QUERY>
college_1
SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'
How many students are enrolled in the class taught by some professor from the accounting department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many students are enrolled in some classes that are taught by an accounting professor?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'</SQL_QUERY>
college_1
SELECT count(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting'
How many students are enrolled in some classes that are taught by an accounting professor?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name of the department that has the largest number of students enrolled?</question> [SQL]:
<SQL_QUERY>SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY count(*) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY count(*) DESC LIMIT 1
What is the name of the department that has the largest number of students enrolled?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name of the department with the most students enrolled?</question> [SQL]:
<SQL_QUERY>SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY count(*) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T4.dept_name FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code GROUP BY T3.dept_code ORDER BY count(*) DESC LIMIT 1
What is the name of the department with the most students enrolled?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>list names of all departments ordered by their names.</question> [SQL]:
<SQL_QUERY>SELECT dept_name FROM department ORDER BY dept_name</SQL_QUERY>
college_1
SELECT dept_name FROM department ORDER BY dept_name
list names of all departments ordered by their names.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the names of all departments in alphabetical order?</question> [SQL]:
<SQL_QUERY>SELECT dept_name FROM department ORDER BY dept_name</SQL_QUERY>
college_1
SELECT dept_name FROM department ORDER BY dept_name
What are the names of all departments in alphabetical order?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>List the codes of all courses that take place in room KLR209.</question> [SQL]:
<SQL_QUERY>SELECT class_code FROM CLASS WHERE class_room = 'KLR209'</SQL_QUERY>
college_1
SELECT class_code FROM CLASS WHERE class_room = 'KLR209'
List the codes of all courses that take place in room KLR209.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the codes of all the courses that are located in room KLR209?</question> [SQL]:
<SQL_QUERY>SELECT class_code FROM CLASS WHERE class_room = 'KLR209'</SQL_QUERY>
college_1
SELECT class_code FROM CLASS WHERE class_room = 'KLR209'
What are the codes of all the courses that are located in room KLR209?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>List the first name of all employees with job code PROF ordered by their date of birth.</question> [SQL]:
<SQL_QUERY>SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' ORDER BY emp_dob</SQL_QUERY>
college_1
SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' ORDER BY emp_dob
List the first name of all employees with job code PROF ordered by their date of birth.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all employees that are professors ordered by date of birth?</question> [SQL]:
<SQL_QUERY>SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' ORDER BY emp_dob</SQL_QUERY>
college_1
SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' ORDER BY emp_dob
What are the first names of all employees that are professors ordered by date of birth?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the first names and offices of all professors sorted by alphabetical order of their first name.</question> [SQL]:
<SQL_QUERY>SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num ORDER BY T2.emp_fname</SQL_QUERY>
college_1
SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num ORDER BY T2.emp_fname
Find the first names and offices of all professors sorted by alphabetical order of their first name.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names and office locations for all professors sorted alphabetically by first name?</question> [SQL]:
<SQL_QUERY>SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num ORDER BY T2.emp_fname</SQL_QUERY>
college_1
SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num ORDER BY T2.emp_fname
What are the first names and office locations for all professors sorted alphabetically by first name?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first and last name of the oldest employee?</question> [SQL]:
<SQL_QUERY>SELECT emp_fname , emp_lname FROM employee ORDER BY emp_dob LIMIT 1</SQL_QUERY>
college_1
SELECT emp_fname , emp_lname FROM employee ORDER BY emp_dob LIMIT 1
What is the first and last name of the oldest employee?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first and last names of the employee with the earliest date of birth?</question> [SQL]:
<SQL_QUERY>SELECT emp_fname , emp_lname FROM employee ORDER BY emp_dob LIMIT 1</SQL_QUERY>
college_1
SELECT emp_fname , emp_lname FROM employee ORDER BY emp_dob LIMIT 1
What are the first and last names of the employee with the earliest date of birth?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first, last name, gpa of the youngest one among students whose GPA is above 3?</question> [SQL]:
<SQL_QUERY>SELECT stu_fname , stu_lname , stu_gpa FROM student WHERE stu_gpa > 3 ORDER BY stu_dob DESC LIMIT 1</SQL_QUERY>
college_1
SELECT stu_fname , stu_lname , stu_gpa FROM student WHERE stu_gpa > 3 ORDER BY stu_dob DESC LIMIT 1
What is the first, last name, gpa of the youngest one among students whose GPA is above 3?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first and last name of the youngest student with a GPA above 3, and what is their GPA?</question> [SQL]:
<SQL_QUERY>SELECT stu_fname , stu_lname , stu_gpa FROM student WHERE stu_gpa > 3 ORDER BY stu_dob DESC LIMIT 1</SQL_QUERY>
college_1
SELECT stu_fname , stu_lname , stu_gpa FROM student WHERE stu_gpa > 3 ORDER BY stu_dob DESC LIMIT 1
What is the first and last name of the youngest student with a GPA above 3, and what is their GPA?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first name of students who got grade C in any class?</question> [SQL]:
<SQL_QUERY>SELECT DISTINCT stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE enroll_grade = 'C'</SQL_QUERY>
college_1
SELECT DISTINCT stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE enroll_grade = 'C'
What is the first name of students who got grade C in any class?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all students who got a grade C in a class?</question> [SQL]:
<SQL_QUERY>SELECT DISTINCT stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE enroll_grade = 'C'</SQL_QUERY>
college_1
SELECT DISTINCT stu_fname FROM student AS T1 JOIN enroll AS T2 ON T1.stu_num = T2.stu_num WHERE enroll_grade = 'C'
What are the first names of all students who got a grade C in a class?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name of department where has the smallest number of professors?</question> [SQL]:
<SQL_QUERY>SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) LIMIT 1</SQL_QUERY>
college_1
SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) LIMIT 1
What is the name of department where has the smallest number of professors?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name of the department with the fewest professors?</question> [SQL]:
<SQL_QUERY>SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) LIMIT 1</SQL_QUERY>
college_1
SELECT T2.dept_name FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.dept_code ORDER BY count(*) LIMIT 1
What is the name of the department with the fewest professors?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name of department where has the largest number of professors with a Ph.D. degree?</question> [SQL]:
<SQL_QUERY>SELECT T2.dept_name , T1.dept_code FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.prof_high_degree = 'Ph.D.' GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T2.dept_name , T1.dept_code FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.prof_high_degree = 'Ph.D.' GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 1
What is the name of department where has the largest number of professors with a Ph.D. degree?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Which department has the most professors with a Ph.D.?</question> [SQL]:
<SQL_QUERY>SELECT T2.dept_name , T1.dept_code FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.prof_high_degree = 'Ph.D.' GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 1</SQL_QUERY>
college_1
SELECT T2.dept_name , T1.dept_code FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T1.prof_high_degree = 'Ph.D.' GROUP BY T1.dept_code ORDER BY count(*) DESC LIMIT 1
Which department has the most professors with a Ph.D.?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of the professors who do not teach a class.</question> [SQL]:
<SQL_QUERY>SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num</SQL_QUERY>
college_1
SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num
What are the first names of the professors who do not teach a class.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all professors not teaching any classes?</question> [SQL]:
<SQL_QUERY>SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num</SQL_QUERY>
college_1
SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' EXCEPT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num
What are the first names of all professors not teaching any classes?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first names of the professors from the history department who do not teach a class.</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num</SQL_QUERY>
college_1
SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num
What is the first names of the professors from the history department who do not teach a class.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all history professors who do not teach?</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num</SQL_QUERY>
college_1
SELECT T1.emp_fname FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History' EXCEPT SELECT T4.emp_fname FROM employee AS T4 JOIN CLASS AS T5 ON T4.emp_num = T5.prof_num
What are the first names of all history professors who do not teach?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the last name and office of the professor from the history department?</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_lname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History'</SQL_QUERY>
college_1
SELECT T1.emp_lname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History'
What is the last name and office of the professor from the history department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the last name and office of all history professors?</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_lname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History'</SQL_QUERY>
college_1
SELECT T1.emp_lname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T3.dept_name = 'History'
What are the last name and office of all history professors?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is department name and office for the professor whose last name is Heffington?</question> [SQL]:
<SQL_QUERY>SELECT T3.dept_name , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T1.emp_lname = 'Heffington'</SQL_QUERY>
college_1
SELECT T3.dept_name , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T1.emp_lname = 'Heffington'
What is department name and office for the professor whose last name is Heffington?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the name of the department and office location for the professor with the last name of Heffington?</question> [SQL]:
<SQL_QUERY>SELECT T3.dept_name , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T1.emp_lname = 'Heffington'</SQL_QUERY>
college_1
SELECT T3.dept_name , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T2.dept_code = T3.dept_code WHERE T1.emp_lname = 'Heffington'
What is the name of the department and office location for the professor with the last name of Heffington?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the last name and hire date of the professor who is in office DRE 102.</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_lname , T1.emp_hiredate FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num WHERE T2.prof_office = 'DRE 102'</SQL_QUERY>
college_1
SELECT T1.emp_lname , T1.emp_hiredate FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num WHERE T2.prof_office = 'DRE 102'
Find the last name and hire date of the professor who is in office DRE 102.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the last name of the professor whose office is located in DRE 102, and when were they hired?</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_lname , T1.emp_hiredate FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num WHERE T2.prof_office = 'DRE 102'</SQL_QUERY>
college_1
SELECT T1.emp_lname , T1.emp_hiredate FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num WHERE T2.prof_office = 'DRE 102'
What is the last name of the professor whose office is located in DRE 102, and when were they hired?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the code of the course which the student whose last name is Smithson took?</question> [SQL]:
<SQL_QUERY>SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'</SQL_QUERY>
college_1
SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'
What is the code of the course which the student whose last name is Smithson took?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the course codes for every class that the student with the last name Smithson took?</question> [SQL]:
<SQL_QUERY>SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'</SQL_QUERY>
college_1
SELECT T1.crs_code FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num WHERE T3.stu_lname = 'Smithson'
What are the course codes for every class that the student with the last name Smithson took?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the description and credit of the course which the student whose last name is Smithson took?</question> [SQL]:
<SQL_QUERY>SELECT T4.crs_description , T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'</SQL_QUERY>
college_1
SELECT T4.crs_description , T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'
What are the description and credit of the course which the student whose last name is Smithson took?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many credits is the course that the student with the last name Smithson took, and what is its description?</question> [SQL]:
<SQL_QUERY>SELECT T4.crs_description , T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'</SQL_QUERY>
college_1
SELECT T4.crs_description , T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'
How many credits is the course that the student with the last name Smithson took, and what is its description?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many professors who has a either Ph.D. or MA degree?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.' OR prof_high_degree = 'MA'</SQL_QUERY>
college_1
SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.' OR prof_high_degree = 'MA'
How many professors who has a either Ph.D. or MA degree?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many professors attained either Ph.D. or Masters degrees?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.' OR prof_high_degree = 'MA'</SQL_QUERY>
college_1
SELECT count(*) FROM professor WHERE prof_high_degree = 'Ph.D.' OR prof_high_degree = 'MA'
How many professors attained either Ph.D. or Masters degrees?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>How many professors who are from either Accounting or Biology department?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T2.dept_name = 'Accounting' OR T2.dept_name = 'Biology'</SQL_QUERY>
college_1
SELECT count(*) FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T2.dept_name = 'Accounting' OR T2.dept_name = 'Biology'
How many professors who are from either Accounting or Biology department?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the number of professors who are in the Accounting or Biology departments?</question> [SQL]:
<SQL_QUERY>SELECT count(*) FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T2.dept_name = 'Accounting' OR T2.dept_name = 'Biology'</SQL_QUERY>
college_1
SELECT count(*) FROM professor AS T1 JOIN department AS T2 ON T1.dept_code = T2.dept_code WHERE T2.dept_name = 'Accounting' OR T2.dept_name = 'Biology'
What is the number of professors who are in the Accounting or Biology departments?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the first name of the professor who is teaching two courses with code CIS-220 and QM-261.</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'</SQL_QUERY>
college_1
SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'
Find the first name of the professor who is teaching two courses with code CIS-220 and QM-261.
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first name of the professor who is teaching CIS-220 and QM-261?</question> [SQL]:
<SQL_QUERY>SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'</SQL_QUERY>
college_1
SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'CIS-220' INTERSECT SELECT T1.emp_fname FROM employee AS T1 JOIN CLASS AS T2 ON T1.emp_num = T2.prof_num WHERE crs_code = 'QM-261'
What is the first name of the professor who is teaching CIS-220 and QM-261?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>Find the first name of student who is taking classes from accounting and Computer Info. Systems departments</question> [SQL]:
<SQL_QUERY>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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT 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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'</SQL_QUERY>
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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT 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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'
Find the first name of student who is taking classes from accounting and Computer Info. Systems departments
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What are the first names of all students taking accoutning and Computer Information Systems classes?</question> [SQL]:
<SQL_QUERY>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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT 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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'</SQL_QUERY>
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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Accounting' INTERSECT 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 JOIN course AS T4 ON T3.crs_code = T4.crs_code JOIN department AS T5 ON T5.dept_code = T4.dept_code WHERE T5.dept_name = 'Computer Info. Systems'
What are the first names of all students taking accoutning and Computer Information Systems classes?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the average gpa of the students enrolled in the course with code ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT avg(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT avg(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'
What is the average gpa of the students enrolled in the course with code ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the average GPA of students taking ACCT-211?</question> [SQL]:
<SQL_QUERY>SELECT avg(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'</SQL_QUERY>
college_1
SELECT avg(T2.stu_gpa) FROM enroll AS T1 JOIN student AS T2 ON T1.stu_num = T2.stu_num JOIN CLASS AS T3 ON T1.class_code = T3.class_code WHERE T3.crs_code = 'ACCT-211'
What is the average GPA of students taking ACCT-211?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first name, gpa and phone number of the top 5 students with highest gpa?</question> [SQL]:
<SQL_QUERY>SELECT stu_gpa , stu_phone , stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5</SQL_QUERY>
college_1
SELECT stu_gpa , stu_phone , stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5
What is the first name, gpa and phone number of the top 5 students with highest gpa?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the first name, GPA, and phone number of the students with the top 5 GPAs?</question> [SQL]:
<SQL_QUERY>SELECT stu_gpa , stu_phone , stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5</SQL_QUERY>
college_1
SELECT stu_gpa , stu_phone , stu_fname FROM student ORDER BY stu_gpa DESC LIMIT 5
What is the first name, GPA, and phone number of the students with the top 5 GPAs?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code
This is a task converting text into SQL statements. We will first give the dataset schema and column types, primary keys and foreign keys and then ask a question in text. You are asked to generate SQL statement in SQLite. <schema>[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);</schema>" <primary_keys>[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num</primary_keys>" <foreign_keys>[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code</foreign_keys>" Answer the following question with a SQL Statement:<question>What is the department name of the students with lowest gpa belongs to?</question> [SQL]:
<SQL_QUERY>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</SQL_QUERY>
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 department name of the students with lowest gpa belongs to?
[Schema (values) (types)]: | college_1 | CLASS : class_code (text) , crs_code (text) , class_section (text) , class_time (text) , class_room (text) , prof_num (text) | COURSE : crs_code (text) , dept_code (text) , crs_description (text) , crs_credit (text) | DEPARTMENT : dept_code (text) , dept_name (text) , school_code (text) , emp_num (text) , dept_address (text) , dept_extension (text) | EMPLOYEE : emp_num (text) , emp_lname (text) , emp_fname (text) , emp_initial (text) , emp_jobcode (text) , emp_hiredate (text) , emp_dob (number) | ENROLL : class_code (text) , stu_num (text) , enroll_grade (text) | PROFESSOR : emp_num (text) , dept_code (text) , prof_office (text) , prof_extension (text) , prof_high_degree (text) | STUDENT : stu_num (text) , stu_lname (text) , stu_fname (text) , stu_init (text) , stu_dob (text) , stu_hrs (text) , stu_class (number) , stu_gpa (text) , stu_transfer (text) , dept_code (text) , stu_phone (number) , prof_num (text);
[Primary Keys]: class : class_code, course : crs_code, department : dept_code, employee : emp_num, enroll : stu_num
[Foreign Keys]: class : prof_num = employee : emp_num | class : crs_code = course : crs_code | course : dept_code = department : dept_code | department : emp_num = employee : emp_num | enroll : stu_num = student : stu_num | enroll : class_code = class : class_code | professor : dept_code = department : dept_code | professor : emp_num = employee : emp_num | student : dept_code = department : dept_code