db_id
stringclasses 127
values | query
stringlengths 20
523
| question
stringlengths 16
224
| schema
stringclasses 127
values |
---|---|---|---|
tracking_grants_for_research | SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16' | What are the distinct grant amount for the grants where the documents were sent before '1986-08-26 20:49:27' and grant were ended after '1989-03-16 18:27:16'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16' | What are the different grant amounts for documents sent before '1986-08-26 20:49:27' and after the grant ended on '1989-03-16 18:27:16'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Paper' INTERSECT SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Patent' | List the project details of the project both producing patent and paper as outcomes. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Paper' INTERSECT SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Patent' | What are the details of the project that is producing both patents and papers as outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT sum(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research' | What is the total grant amount of the organisations described as research? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT sum(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research' | What is the total amount of grant money for research? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_from , date_to FROM Project_Staff WHERE project_id IN( SELECT project_id FROM Project_Staff GROUP BY project_id ORDER BY count(*) DESC LIMIT 1 ) UNION SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'leader' | List from which date and to which date these staff work: project staff of the project which hires the most staffs | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_from , date_to FROM Project_Staff WHERE project_id IN( SELECT project_id FROM Project_Staff GROUP BY project_id ORDER BY count(*) DESC LIMIT 1 ) UNION SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'leader' | From what date and to what date do the staff work on a project that has the most staff and has staff in a leader role? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T2.organisation_id , T2.organisation_details FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_id HAVING sum(T1.grant_amount) > 6000 | Find the organisation ids and details of the organisations which are involved in | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T2.organisation_id , T2.organisation_details FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_id HAVING sum(T1.grant_amount) > 6000 | What are the ids and details for all organizations that have grants of more than 6000 dollars? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_type , T1.organisation_id FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1 | What is the organisation type and id of the organisation which has the most number of research staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_type , T1.organisation_id FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1 | What is the type and id of the organization that has the most research staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_type FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_type ORDER BY count(*) DESC LIMIT 1 | Which organisation type hires most research staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_type FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_type ORDER BY count(*) DESC LIMIT 1 | What is the type of the organization with the most research staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.sent_date FROM documents AS T1 JOIN Grants AS T2 ON T1.grant_id = T2.grant_id JOIN Organisations AS T3 ON T2.organisation_id = T3.organisation_id JOIN organisation_Types AS T4 ON T3.organisation_type = T4.organisation_type WHERE T2.grant_amount > 5000 AND T4.organisation_type_description = 'Research' | Find out the send dates of the documents with the grant amount of more than 5000 were granted by organisation type described | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.sent_date FROM documents AS T1 JOIN Grants AS T2 ON T1.grant_id = T2.grant_id JOIN Organisations AS T3 ON T2.organisation_id = T3.organisation_id JOIN organisation_Types AS T4 ON T3.organisation_type = T4.organisation_type WHERE T2.grant_amount > 5000 AND T4.organisation_type_description = 'Research' | What are the send dates for all documents that have a grant amount of more than 5000 and are involved in research? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.response_received_date FROM Documents AS T1 JOIN Document_Types AS T2 ON T1.document_type_code = T2.document_type_code JOIN Grants AS T3 ON T1.grant_id = T3.grant_id WHERE T2.document_description = 'Regular' OR T3.grant_amount > 100 | What are the response received dates for the documents described as 'Regular' or granted with more than 100? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.response_received_date FROM Documents AS T1 JOIN Document_Types AS T2 ON T1.document_type_code = T2.document_type_code JOIN Grants AS T3 ON T1.grant_id = T3.grant_id WHERE T2.document_description = 'Regular' OR T3.grant_amount > 100 | What is the response received date for the document described as Regular that was granted more than 100 dollars? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_Staff WHERE role_code = 'researcher' ) | List the project details of the projects which did not hire any staff for a researcher role. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_Staff WHERE role_code = 'researcher' ) | What are the details for all projects that did not hire any staff in a research role? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.project_id HAVING count(*) > 2 | What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.project_id HAVING count(*) > 2 | What are the task details, task ids, and project ids for the progrects that are detailed as 'omnis' or have at least 3 outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'researcher' | When do all the researcher role staff start to work, and when do they stop working? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'researcher' | When did researchers start and stop working? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(DISTINCT role_code) FROM Project_Staff | How many kinds of roles are there for the staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(DISTINCT role_code) FROM Project_Staff | How many different roles are there on the project staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT sum(grant_amount) , organisation_id FROM Grants GROUP BY organisation_id | What is the total amount of grants given by each organisations? Also list the organisation id. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT sum(grant_amount) , organisation_id FROM Grants GROUP BY organisation_id | What is the total amount of grant money given to each organization and what is its id? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id JOIN Research_outcomes AS T3 ON T2.outcome_code = T3.outcome_code WHERE T3.outcome_description LIKE '%Published%' | List the project details of the projects with the research outcome described with the substring 'Published'. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id JOIN Research_outcomes AS T3 ON T2.outcome_code = T3.outcome_code WHERE T3.outcome_description LIKE '%Published%' | What are the details for the project whose research has been published? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_id , count(*) FROM Project_Staff AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) ASC | How many staff does each project has? List the project id and the number in an ascending order. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_id , count(*) FROM Project_Staff AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) ASC | For each project id, how many staff does it have? List them in increasing order. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher' | What is the complete description of the researcher role. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher' | What is the complete description of the job of a researcher? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_from FROM Project_Staff ORDER BY date_from ASC LIMIT 1 | When did the first staff for the projects started working? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_from FROM Project_Staff ORDER BY date_from ASC LIMIT 1 | When did the first staff member start working? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_details , T1.project_id FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) DESC LIMIT 1 | Which project made the most number of outcomes? List the project details and the project id. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.project_details , T1.project_id FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) DESC LIMIT 1 | What are the details and id of the project with the most outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_outcomes ) | Which projects have no outcome? List the project details. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_outcomes ) | What are the details of the project with no outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_id , T1.organisation_type , T1.organisation_details FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1 | Which organisation hired the most number of research staff? List the organisation id, type and detail. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_id , T1.organisation_type , T1.organisation_details FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1 | What are the ids, types, and details of the organization with the most research staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.role_description , T2.staff_id FROM Staff_Roles AS T1 JOIN Project_Staff AS T2 ON T1.role_code = T2.role_code JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.staff_id ORDER BY count(*) DESC LIMIT 1 | Show the role description and the id of the project staff involved in most number of project outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.role_description , T2.staff_id FROM Staff_Roles AS T1 JOIN Project_Staff AS T2 ON T1.role_code = T2.role_code JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.staff_id ORDER BY count(*) DESC LIMIT 1 | For each staff id, what is the description of the role that is involved with the most number of projects? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%' | Which document type is described with the prefix 'Initial'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%' | What is the type of the document whose description starts with the word 'Initial'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Initial Application' | For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Initial Application' | For grants that have descriptions of Regular and Initial Applications, what are their start dates? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT grant_id , count(*) FROM Documents GROUP BY grant_id ORDER BY count(*) DESC LIMIT 1 | How many documents can one grant have at most? List the grant id and number. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT grant_id , count(*) FROM Documents GROUP BY grant_id ORDER BY count(*) DESC LIMIT 1 | For each grant id, how many documents does it have, and which one has the most? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo' | Find the organisation type description of the organisation detailed as 'quo'. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo' | What is the type description of the organization whose detail is listed as 'quo'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT organisation_details FROM Organisations AS T1 JOIN organisation_Types AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_type_description = 'Sponsor' ORDER BY organisation_details | What are all the details of the organisations described as 'Sponsor'? Sort the result in an ascending order. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT organisation_details FROM Organisations AS T1 JOIN organisation_Types AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_type_description = 'Sponsor' ORDER BY organisation_details | What are the details of all organizations that are described as Sponsors and sort the results in ascending order? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) FROM Project_outcomes WHERE outcome_code = 'Patent' | How many Patent outcomes are generated from all the projects? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) FROM Project_outcomes WHERE outcome_code = 'Patent' | How many patents outcomes were listed for all the projects? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54' | How many project staff worked as leaders or started working before '1989-04-24 23:51:54'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54' | How many project members were leaders or started working before '1989-04-24 23:51:54'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1 | What is the last date of the staff leaving the projects? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1 | What is the last date that a staff member left a project? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint' | What are the result description of the project whose detail is 'sint'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint' | What is the description for the results whose project detail is 'sint'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_id , count(*) FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1 | List the organisation id with the maximum outcome count, and the count. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.organisation_id , count(*) FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1 | What is the id of the organization with the maximum number of outcomes and how many outcomes are there? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT project_details FROM Projects WHERE organisation_id IN ( SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY count(*) DESC LIMIT 1 ) | List the project details of the projects launched by the organisation | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT project_details FROM Projects WHERE organisation_id IN ( SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY count(*) DESC LIMIT 1 ) | What are the details for the projects which were launched by the organization with the most projects? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT staff_details FROM Research_Staff ORDER BY staff_details ASC | List the research staff details, and order in ascending order. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT staff_details FROM Research_Staff ORDER BY staff_details ASC | What details are there on the research staff? List the result in ascending alphabetical order. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) FROM Tasks | How many tasks are there in total? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) FROM Tasks | How many tasks are there? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) , T1.project_details FROM Projects AS T1 JOIN Tasks AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id | How many tasks does each project have? List the task count and the project detail. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT count(*) , T1.project_details FROM Projects AS T1 JOIN Tasks AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id | For each project id, how many tasks are there? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18' | What are the staff roles of the staff who | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18' | What roles did staff members play between '2003-04-19 15:06:20' and '2016-03-15 00:33:18'? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code | What are the descriptions of all the project outcomes? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code | List the description of the outcomes for all projects. | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY count(*) DESC LIMIT 1 | Which role is most common for the staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
tracking_grants_for_research | SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY count(*) DESC LIMIT 1 | What is the most common role for the staff? | PRAGMA foreign_keys = ON;
CREATE TABLE `Document_Types` (
`document_type_code` VARCHAR(10) PRIMARY KEY,
`document_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Documents` (
`document_id` INTEGER PRIMARY KEY,
`document_type_code` VARCHAR(10),
`grant_id` INTEGER NOT NULL,
`sent_date` DATETIME NOT NULL,
`response_received_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ),
FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` )
);
CREATE TABLE `Grants` (
`grant_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0,
`grant_start_date` DATETIME NOT NULL,
`grant_end_date` DATETIME NOT NULL,
`other_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Organisation_Types` (
`organisation_type` VARCHAR(10) PRIMARY KEY,
`organisation_type_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Organisations` (
`organisation_id` INTEGER PRIMARY KEY,
`organisation_type` VARCHAR(10) NOT NULL,
`organisation_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` )
);
CREATE TABLE `Project_Outcomes` (
`project_id` INTEGER NOT NULL,
`outcome_code` VARCHAR(10) NOT NULL,
`outcome_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` )
);
CREATE TABLE `Project_Staff` (
`staff_id` DOUBLE PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`role_code` VARCHAR(10) NOT NULL,
`date_from` DATETIME,
`date_to` DATETIME,
`other_details` VARCHAR(255),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` )
);
CREATE TABLE `Projects` (
`project_id` INTEGER PRIMARY KEY,
`organisation_id` INTEGER NOT NULL,
`project_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Research_Outcomes` (
`outcome_code` VARCHAR(10) PRIMARY KEY,
`outcome_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Research_Staff` (
`staff_id` INTEGER PRIMARY KEY,
`employer_organisation_id` INTEGER NOT NULL,
`staff_details` VARCHAR(255) NOT NULL,
FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` )
);
CREATE TABLE `Staff_Roles` (
`role_code` VARCHAR(10) PRIMARY KEY,
`role_description` VARCHAR(255) NOT NULL
);
CREATE TABLE `Tasks` (
`task_id` INTEGER PRIMARY KEY,
`project_id` INTEGER NOT NULL,
`task_details` VARCHAR(255) NOT NULL,
`eg Agree Objectives` VARCHAR(1),
FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` )
);
INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application')INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research')INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et')INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader')INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et')INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', '')INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro')INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL)INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper')INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL)INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL)INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo') |
network_2 | SELECT count(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan' | How many friends does Dan have? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan' | How many friends does Dan have? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(*) FROM Person WHERE gender = 'female' | How many females does this network has? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(*) FROM Person WHERE gender = 'female' | How many females are in the network? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT avg(age) FROM Person | What is the average age for all person? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT avg(age) FROM Person | What is the average age for all people in the table? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(DISTINCT city) FROM Person | How many different cities are they from? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(DISTINCT city) FROM Person | How many different cities do people originate from? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(DISTINCT job) FROM Person | How many type of jobs do they have? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(DISTINCT job) FROM Person | How many different jobs are listed? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE age = (SELECT max(age) FROM person) | Who is the oldest person? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE age = (SELECT max(age) FROM person) | What is the name of the person who is the oldest? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE job = 'student' AND age = (SELECT max(age) FROM person WHERE job = 'student' ) | Who is the oldest person whose job is student? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE job = 'student' AND age = (SELECT max(age) FROM person WHERE job = 'student' ) | What is the name of the oldest student? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT min(age) FROM person WHERE gender = 'male' ) | Who is the youngest male? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT min(age) FROM person WHERE gender = 'male' ) | What is the name of the youngest male? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach' | How old is the doctor named Zach? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach' | What is the age of the doctor named Zach? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE age < 30 | Who is the person whose age is below 30? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT name FROM Person WHERE age < 30 | What is the name of the person whose age is below 30? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(*) FROM Person WHERE age > 30 AND job = 'engineer' | How many people whose age is greater 30 and job is engineer? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
network_2 | SELECT count(*) FROM Person WHERE age > 30 AND job = 'engineer' | HOw many engineers are older than 30? | CREATE TABLE Person (
name varchar(20) PRIMARY KEY,
age INTEGER,
city TEXT,
gender TEXT,
job TEXT
);
CREATE TABLE PersonFriend (
name varchar(20),
friend varchar(20),
year INTEGER,
FOREIGN KEY (name) REFERENCES Person(name),
FOREIGN KEY (friend) REFERENCES Person(name)
);
INSERT INTO Person VALUES ('Alice',25,'new york city','female','student');
INSERT INTO PersonFriend VALUES ('Alice','Bob',10);
|
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.