input
stringlengths
191
7.13k
output
stringlengths
19
578
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_type_code FROM Ref_Document_Types;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_type_description FROM Ref_Document_Types WHERE document_type_code = "Paper";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT shipping_agent_name FROM Ref_Shipping_Agents;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT shipping_agent_code FROM Ref_Shipping_Agents WHERE shipping_agent_name = "UPS";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT role_code FROM ROLES;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT role_description FROM ROLES WHERE role_code = "ED";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT count(*) FROM Employees;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT T1.role_description FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code WHERE T2.employee_name = "Koby";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id , receipt_date FROM Documents;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT T1.role_description , T2.role_code , count(*) FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code GROUP BY T2.role_code;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Roles.role_description , count(Employees.employee_id) FROM ROLES JOIN Employees ON Employees.role_code = Roles.role_code GROUP BY Employees.role_code HAVING count(Employees.employee_id) > 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Ref_Document_Status.document_status_description FROM Ref_Document_Status JOIN Documents ON Documents.document_status_code = Ref_Document_Status.document_status_code WHERE Documents.document_id = 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT count(*) FROM Documents WHERE document_status_code = "done";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_type_code FROM Documents WHERE document_id = 2;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id FROM Documents WHERE document_status_code = "done" AND document_type_code = "Paper";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Ref_Shipping_Agents.shipping_agent_name FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Documents.document_id = 2;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT count(*) FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Ref_Shipping_Agents.shipping_agent_name = "USPS";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Ref_Shipping_Agents.shipping_agent_name , count(Documents.document_id) FROM Ref_Shipping_Agents JOIN Documents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code GROUP BY Ref_Shipping_Agents.shipping_agent_code ORDER BY count(Documents.document_id) DESC LIMIT 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT receipt_date FROM Documents WHERE document_id = 3;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Addresses.address_details FROM Addresses JOIN Documents_Mailed ON Documents_Mailed.mailed_to_address_id = Addresses.address_id WHERE document_id = 4;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT mailing_date FROM Documents_Mailed WHERE document_id = 7;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id FROM Documents WHERE document_status_code = "done" AND document_type_code = "Paper" EXCEPT SELECT document_id FROM Documents JOIN Ref_Shipping_Agents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Ref_Shipping_Agents.shipping_agent_name = "USPS";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id FROM Documents WHERE document_status_code = "done" AND document_type_code = "Paper" INTERSECT SELECT document_id FROM Documents JOIN Ref_Shipping_Agents ON Documents.shipping_agent_code = Ref_Shipping_Agents.shipping_agent_code WHERE Ref_Shipping_Agents.shipping_agent_name = "USPS";
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT draft_details FROM Document_Drafts WHERE document_id = 7;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT count(*) FROM Draft_Copies WHERE document_id = 2;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id , count(copy_number) FROM Draft_Copies GROUP BY document_id ORDER BY count(copy_number) DESC LIMIT 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id , count(*) FROM Draft_Copies GROUP BY document_id HAVING count(*) > 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Employees.employee_name FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id WHERE Circulation_History.document_id = 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT employee_name FROM Employees EXCEPT SELECT Employees.employee_name FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT Employees.employee_name , count(*) FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id GROUP BY Circulation_History.document_id , Circulation_History.draft_number , Circulation_History.copy_number ORDER BY count(*) DESC LIMIT 1;
Tables: Ref_Document_Types, Roles, Addresses, Ref_Document_Status, Ref_Shipping_Agents, Documents, Employees, Document_Drafts, Draft_Copies, Circulation_History, Documents_Mailed Columns: Ref_Document_Types.document_type_code, Ref_Document_Types.document_type_description, Roles.role_code, Roles.role_description, Addres...
SELECT document_id , count(DISTINCT employee_id) FROM Circulation_History GROUP BY document_id;
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT dname FROM department ORDER BY mgr_start_date;
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT Dependent_name FROM dependent WHERE relationship = 'Spouse';
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT count(*) FROM dependent WHERE sex = 'F';
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT t1.dname FROM department AS t1 JOIN dept_locations AS t2 ON t1.dnumber = t2.dnumber WHERE t2.dlocation = 'Houston';
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT fname , lname FROM employee WHERE salary > 30000;
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT count(*) , sex FROM employee WHERE salary < 50000 GROUP BY sex;
Tables: works_on, employee, department, project, dependent, dept_locations Columns: works_on.Essn, works_on.Pno, works_on.Hours, employee.Fname, employee.Minit, employee.Lname, employee.Ssn, employee.Bdate, employee.Address, employee.Sex, employee.Salary, employee.Super_ssn, employee.Dno, department.Dname, department.D...
SELECT fname , lname , address FROM employee ORDER BY Bdate;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT T1.event_details FROM EVENTS AS T1 JOIN Services AS T2 ON T1.Service_ID = T2.Service_ID WHERE T2.Service_Type_Code = 'Marriage';
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT T1.event_id , T1.event_details FROM EVENTS AS T1 JOIN Participants_in_Events AS T2 ON T1.Event_ID = T2.Event_ID GROUP BY T1.Event_ID HAVING count(*) > 1;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT T1.Participant_ID , T1.Participant_Type_Code , count(*) FROM Participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID GROUP BY T1.Participant_ID;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT Participant_ID , Participant_Type_Code , Participant_Details FROM Participants;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT count(*) FROM participants WHERE participant_type_code = 'Organizer';
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT service_type_code FROM services ORDER BY service_type_code;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT service_id , event_details FROM EVENTS;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT count(*) FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE T1.participant_details LIKE '%Dr.%';
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT participant_type_code FROM participants GROUP BY participant_type_code ORDER BY count(*) DESC LIMIT 1;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT T3.service_id , T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY count(*) ASC LIMIT 1;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT Event_ID FROM Participants_in_Events GROUP BY Event_ID ORDER BY count(*) DESC LIMIT 1;
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT event_id FROM EVENTS EXCEPT SELECT T1.event_id FROM Participants_in_Events AS T1 JOIN Participants AS T2 ON T1.Participant_ID = T2.Participant_ID WHERE Participant_Details = 'Kenyatta Kuhn';
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Success' INTERSECT SELECT T1.service_type_code FROM services AS T1 JOIN EVENTS AS T2 ON T1.service_id = T2.service_id WHERE T2.event_details = 'Fail';
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT count(*) FROM EVENTS WHERE event_id NOT IN (SELECT event_id FROM Participants_in_Events);
Tables: Services, Participants, Events, Participants_in_Events Columns: Services.Service_ID, Services.Service_Type_Code, Participants.Participant_ID, Participants.Participant_Type_Code, Participants.Participant_Details, Events.Event_ID, Events.Service_ID, Events.Event_Details, Participants_in_Events.Event_ID, Participa...
SELECT count(DISTINCT participant_id) FROM participants_in_Events;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT name FROM races ORDER BY date DESC LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT name FROM races ORDER BY date DESC LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT name , date FROM races ORDER BY date DESC LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT name , date FROM races ORDER BY date DESC LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT name FROM races WHERE YEAR = 2017;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT name FROM races WHERE YEAR = 2017;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT name FROM races WHERE YEAR BETWEEN 2014 AND 2017;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT name FROM races WHERE YEAR BETWEEN 2014 AND 2017;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.forename , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds < 93000;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.forename , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds < 93000;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.driverid , T1.nationality FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds > 100000;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.driverid , T1.nationality FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE T2.milliseconds > 100000;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.forename , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.forename , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.driverid , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds DESC LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.driverid , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds DESC LIMIT 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.driverid , T1.forename , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE POSITION = '1' GROUP BY T1.driverid HAVING count(*) >= 2;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.driverid , T1.forename , T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE POSITION = '1' GROUP BY T1.driverid HAVING count(*) >= 2;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(*) FROM results AS T1 JOIN races AS T2 ON T1.raceid = T2.raceid WHERE T2.name = "Australian Grand Prix" AND YEAR = 2009;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(*) FROM results AS T1 JOIN races AS T2 ON T1.raceid = T2.raceid WHERE T2.name = "Australian Grand Prix" AND YEAR = 2009;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(DISTINCT driverId) FROM results WHERE raceId NOT IN( SELECT raceId FROM races WHERE YEAR != 2009 );
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(DISTINCT driverId) FROM results WHERE raceId NOT IN( SELECT raceId FROM races WHERE YEAR != 2009 );
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T2.name , T2.year FROM results AS T1 JOIN races AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T1.driverid = T3.driverid WHERE T3.forename = "Lewis";
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T2.name , T2.year FROM results AS T1 JOIN races AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T1.driverid = T3.driverid WHERE T3.forename = "Lewis";
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT forename , surname FROM drivers WHERE nationality = "German";
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT forename , surname FROM drivers WHERE nationality = "German";
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T2.driverid , T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" INTERSECT SELECT T2.driverid , T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.drive...
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T2.driverid , T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" INTERSECT SELECT T2.driverid , T3.forename FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.drive...
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T3.forename , T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" EXCEPT SELECT T3.forename , T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T...
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T3.forename , T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T3.driverid WHERE T1.name = "Australian Grand Prix" EXCEPT SELECT T3.forename , T3.surname FROM races AS T1 JOIN results AS T2 ON T1.raceid = T2.raceid JOIN drivers AS T3 ON T2.driverid = T...
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.forename FROM drivers AS T1 JOIN driverstandings AS T2 ON T1.driverid = T2.driverid WHERE T2.position = 1 AND T2.wins = 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.forename FROM drivers AS T1 JOIN driverstandings AS T2 ON T1.driverid = T2.driverid WHERE T2.position = 1 AND T2.wins = 1;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.forename FROM drivers AS T1 JOIN driverstandings AS T2 ON T1.driverid = T2.driverid WHERE T2.position = 1 AND T2.wins = 1 AND T2.points > 20;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.forename FROM drivers AS T1 JOIN driverstandings AS T2 ON T1.driverid = T2.driverid WHERE T2.position = 1 AND T2.wins = 1 AND T2.points > 20;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(*) , nationality FROM constructors GROUP BY nationality;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(*) , nationality FROM constructors GROUP BY nationality;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(*) , constructorid FROM constructorStandings GROUP BY constructorid;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT count(*) , constructorid FROM constructorStandings GROUP BY constructorid;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.name FROM races AS T1 JOIN circuits AS T2 ON T1.circuitid = T2.circuitid WHERE T2.country = "Spain" AND T1.year > 2017;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT T1.name FROM races AS T1 JOIN circuits AS T2 ON T1.circuitid = T2.circuitid WHERE T2.country = "Spain" AND T1.year > 2017;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.name FROM races AS T1 JOIN circuits AS T2 ON T1.circuitid = T2.circuitid WHERE T2.country = "Spain" AND T1.year > 2000;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT T1.name FROM races AS T1 JOIN circuits AS T2 ON T1.circuitid = T2.circuitid WHERE T2.country = "Spain" AND T1.year > 2000;
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT driverid , STOP FROM pitstops WHERE duration < (SELECT max(duration) FROM pitstops WHERE raceid = 841);
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT driverid , STOP FROM pitstops WHERE duration < (SELECT max(duration) FROM pitstops WHERE raceid = 841);
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT driverid , STOP FROM pitstops WHERE duration > (SELECT min(duration) FROM pitstops WHERE raceid = 841);
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT driverid , STOP FROM pitstops WHERE duration > (SELECT min(duration) FROM pitstops WHERE raceid = 841);
Tables: circuits, races, drivers, status, seasons, constructors, constructorStandings, results, driverStandings, constructorResults, qualifying, pitStops, lapTimes Columns: circuits.circuitId, circuits.circuitRef, circuits.name, circuits.location, circuits.country, circuits.lat, circuits.lng, circuits.alt, circuits.url...
SELECT DISTINCT forename FROM drivers ORDER BY forename ASC;