db_id
stringclasses
146 values
question
stringlengths
3
224
sql
stringlengths
18
577
database_schema
stringclasses
146 values
debate
Show the distinct venues of debates
SELECT DISTINCT Venue FROM debate
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
debate
Show the names of people, and dates and venues of debates they are on the affirmative side.
SELECT T3.Name , T2.Date , T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
debate
Show the names of people, and dates and venues of debates they are on the negative side, ordered in ascending alphabetical order of name.
SELECT T3.Name , T2.Date , T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Negative = T3.People_ID ORDER BY T3.Name ASC
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
debate
Show the names of people that are on affirmative side of debates with number of audience bigger than 200.
SELECT T3.Name FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID WHERE T2.Num_of_Audience > 200
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
debate
Show the names of people and the number of times they have been on the affirmative side of debates.
SELECT T2.Name , COUNT(*) FROM debate_people AS T1 JOIN people AS T2 ON T1.Affirmative = T2.People_ID GROUP BY T2.Name
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
debate
Show the names of people who have been on the negative side of debates at least twice.
SELECT T2.Name FROM debate_people AS T1 JOIN people AS T2 ON T1.Negative = T2.People_ID GROUP BY T2.Name HAVING COUNT(*) >= 2
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
debate
List the names of people that have not been on the affirmative side of debates.
SELECT Name FROM people WHERE People_id NOT IN (SELECT Affirmative FROM debate_people)
CREATE TABLE "people" ( "People_ID" int, "District" text, "Name" text, "Party" text, "Age" int, PRIMARY KEY ("People_ID") ) 3 rows from people table: People_ID District Name Party Age 1 New York 1 Luther C. Carter Republican 35 2 New York 2 James Humphrey Republican 38 3 New York 3 Daniel Sickles Democratic 46 CREATE TABLE "debate" ( "Debate_ID" int, "Date" text, "Venue" text, "Num_of_Audience" int, PRIMARY KEY ("Debate_ID") ) 3 rows from debate table: Debate_ID Date Venue Num_of_Audience 1 October 21, 2011 Manama , Bahrain 342 2 December 17, 2014 Doha , Qatar 134 3 August 3, 2015 Manama , Bahrain 90 CREATE TABLE "debate_people" ( "Debate_ID" int, "Affirmative" int, "Negative" int, "If_Affirmative_Win" bool, PRIMARY KEY ("Debate_ID","Affirmative","Negative"), FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") ) 3 rows from debate_people table: Debate_ID Affirmative Negative If_Affirmative_Win 1 1 10 F 5 2 8 F 3 4 7 T
insurance_and_eClaims
List the names of all the customers in alphabetical order.
SELECT customer_details FROM customers ORDER BY customer_details
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Sort the customer names in alphabetical order.
SELECT customer_details FROM customers ORDER BY customer_details
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find all the policy type codes associated with the customer "Dayana Robel"
SELECT policy_type_code FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t2.customer_details = "Dayana Robel"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What are the type codes of the policies used by the customer "Dayana Robel"?
SELECT policy_type_code FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t2.customer_details = "Dayana Robel"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which type of policy is most frequently used? Give me the policy type code.
SELECT policy_type_code FROM policies GROUP BY policy_type_code ORDER BY count(*) DESC LIMIT 1
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the type code of the most frequently used policy.
SELECT policy_type_code FROM policies GROUP BY policy_type_code ORDER BY count(*) DESC LIMIT 1
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find all the policy types that are used by more than 2 customers.
SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING count(*) > 2
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which types of policy are chosen by more than 2 customers? Give me the policy type codes.
SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING count(*) > 2
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the total and average amount paid in claim headers.
SELECT sum(amount_piad) , avg(amount_piad) FROM claim_headers
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What are the total amount and average amount paid in claim headers?
SELECT sum(amount_piad) , avg(amount_piad) FROM claim_headers
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the total amount claimed in the most recently created document.
SELECT sum(t1.amount_claimed) FROM claim_headers AS t1 JOIN claims_documents AS t2 ON t1.claim_header_id = t2.claim_id WHERE t2.created_date = (SELECT created_date FROM claims_documents ORDER BY created_date LIMIT 1)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
How much amount in total were claimed in the most recently created document?
SELECT sum(t1.amount_claimed) FROM claim_headers AS t1 JOIN claims_documents AS t2 ON t1.claim_header_id = t2.claim_id WHERE t2.created_date = (SELECT created_date FROM claims_documents ORDER BY created_date LIMIT 1)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What is the name of the customer who has made the largest amount of claim in a single claim?
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_claimed = (SELECT max(amount_claimed) FROM claim_headers)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customer made the largest amount of claim in a single claim? Return the customer details.
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_claimed = (SELECT max(amount_claimed) FROM claim_headers)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What is the name of the customer who has made the minimum amount of payment in one claim?
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_piad = (SELECT min(amount_piad) FROM claim_headers)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customer made the smallest amount of claim in one claim? Return the customer details.
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_piad = (SELECT min(amount_piad) FROM claim_headers)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the names of customers who have no policies associated.
SELECT customer_details FROM customers EXCEPT SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What are the names of customers who do not have any policies?
SELECT customer_details FROM customers EXCEPT SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
How many claim processing stages are there in total?
SELECT count(*) FROM claims_processing_stages
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the number of distinct stages in claim processing.
SELECT count(*) FROM claims_processing_stages
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What is the name of the claim processing stage that most of the claims are on?
SELECT t2.claim_status_name FROM claims_processing AS t1 JOIN claims_processing_stages AS t2 ON t1.claim_stage_id = t2.claim_stage_id GROUP BY t1.claim_stage_id ORDER BY count(*) DESC LIMIT 1
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which claim processing stage has the most claims? Show the claim status name.
SELECT t2.claim_status_name FROM claims_processing AS t1 JOIN claims_processing_stages AS t2 ON t1.claim_stage_id = t2.claim_stage_id GROUP BY t1.claim_stage_id ORDER BY count(*) DESC LIMIT 1
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the names of customers whose name contains "Diana".
SELECT customer_details FROM customers WHERE customer_details LIKE "%Diana%"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customers have the substring "Diana" in their names? Return the customer details.
SELECT customer_details FROM customers WHERE customer_details LIKE "%Diana%"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the names of the customers who have an deputy policy.
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customers have an insurance policy with the type code "Deputy"? Give me the customer details.
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the names of customers who either have an deputy policy or uniformed policy.
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customers have an insurance policy with the type code "Deputy" or "Uniform"? Return the customer details.
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the names of all the customers and staff members.
SELECT customer_details FROM customers UNION SELECT staff_details FROM staff
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What are the names of the customers and staff members?
SELECT customer_details FROM customers UNION SELECT staff_details FROM staff
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the number of records of each policy type and its type code.
SELECT policy_type_code , count(*) FROM policies GROUP BY policy_type_code
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
For each policy type, return its type code and its count in the record.
SELECT policy_type_code , count(*) FROM policies GROUP BY policy_type_code
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the name of the customer that has been involved in the most policies.
SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id GROUP BY t2.customer_details ORDER BY count(*) DESC LIMIT 1
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customer have the most policies? Give me the customer details.
SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id GROUP BY t2.customer_details ORDER BY count(*) DESC LIMIT 1
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
What is the description of the claim status "Open"?
SELECT claim_status_description FROM claims_processing_stages WHERE claim_status_name = "Open"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the description of the claim status "Open".
SELECT claim_status_description FROM claims_processing_stages WHERE claim_status_name = "Open"
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
How many distinct claim outcome codes are there?
SELECT count(DISTINCT claim_outcome_code) FROM claims_processing
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Count the number of distinct claim outcome codes.
SELECT count(DISTINCT claim_outcome_code) FROM claims_processing
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Which customer is associated with the latest policy?
SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.start_date = (SELECT max(start_date) FROM policies)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
insurance_and_eClaims
Find the customer who started a policy most recently.
SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.start_date = (SELECT max(start_date) FROM policies)
CREATE TABLE Customers ( Customer_ID INTEGER NOT NULL, Customer_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Customer_ID) ) 3 rows from Customers table: Customer_ID Customer_Details 252 America Jaskolski 263 Ellsworth Paucek 334 Mrs. Hanna Willms CREATE TABLE Staff ( Staff_ID INTEGER NOT NULL, Staff_Details VARCHAR(255) NOT NULL, PRIMARY KEY (Staff_ID) ) 3 rows from Staff table: Staff_ID Staff_Details 406 Clifton 427 Cathryn 510 Kaci CREATE TABLE Policies ( Policy_ID INTEGER NOT NULL, Customer_ID INTEGER NOT NULL, Policy_Type_Code CHAR(15) NOT NULL, Start_Date DATETIME, End_Date DATETIME, PRIMARY KEY (Policy_ID), FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) ) 3 rows from Policies table: Policy_ID Customer_ID Policy_Type_Code Start_Date End_Date 125 808 Deputy 2018-02-10 08:56:30 2018-03-18 09:17:26 151 380 Jurisdiction 2017-12-20 06:02:31 2017-09-16 22:04:13 287 334 Jurisdiction 2017-03-16 18:16:52 2017-11-24 06:36:51 CREATE TABLE Claim_Headers ( Claim_Header_ID INTEGER NOT NULL, Claim_Status_Code CHAR(15) NOT NULL, Claim_Type_Code CHAR(15) NOT NULL, Policy_ID INTEGER NOT NULL, Date_of_Claim DATETIME, Date_of_Settlement DATETIME, Amount_Claimed DECIMAL(20,4), Amount_Piad DECIMAL(20,4), PRIMARY KEY (Claim_Header_ID), FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) ) 3 rows from Claim_Headers table: Claim_Header_ID Claim_Status_Code Claim_Type_Code Policy_ID Date_of_Claim Date_of_Settlement Amount_Claimed Amount_Piad 15 Settled Handphone Subsidy 518 2016-05-31 06:07:11 2018-02-23 03:46:38 349.15 582.03 24 Disputed Child Birth 518 2016-12-30 21:43:21 2017-10-08 21:43:14 318.16 309.20 27 Disputed Overtime Meal Subsidy 518 2017-05-01 13:34:43 2017-11-16 04:06:05 362.71 132.97 CREATE TABLE Claims_Documents ( Claim_ID INTEGER NOT NULL, Document_Type_Code CHAR(15) NOT NULL, Created_by_Staff_ID INTEGER, Created_Date INTEGER, PRIMARY KEY (Claim_ID, Document_Type_Code), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Documents table: Claim_ID Document_Type_Code Created_by_Staff_ID Created_Date 24 Document 718 8 27 Document 986 6 27 Medical 427 8 CREATE TABLE Claims_Processing_Stages ( Claim_Stage_ID INTEGER NOT NULL, Next_Claim_Stage_ID INTEGER, Claim_Status_Name VARCHAR(255) NOT NULL, Claim_Status_Description VARCHAR(255) NOT NULL, PRIMARY KEY (Claim_Stage_ID) ) 3 rows from Claims_Processing_Stages table: Claim_Stage_ID Next_Claim_Stage_ID Claim_Status_Name Claim_Status_Description 1 1 Open Open a new claim 3 1 Close Close a claim CREATE TABLE Claims_Processing ( Claim_Processing_ID INTEGER NOT NULL, Claim_ID INTEGER NOT NULL, Claim_Outcome_Code CHAR(15) NOT NULL, Claim_Stage_ID INTEGER NOT NULL, Staff_ID INTEGER, PRIMARY KEY (Claim_Processing_ID), FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) ) 3 rows from Claims_Processing table: Claim_Processing_ID Claim_ID Claim_Outcome_Code Claim_Stage_ID Staff_ID 118 28 In progress 1 771 145 62 In progress 1 589 213 27 In progress 1 589
customers_and_invoices
Show the number of accounts.
SELECT count(*) FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many accounts are there?
SELECT count(*) FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many customers have opened an account?
SELECT count(DISTINCT customer_id) FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of customers who have an account.
SELECT count(DISTINCT customer_id) FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the id, the date of account opened, the account name, and other account detail for all accounts.
SELECT account_id , date_account_opened , account_name , other_account_details FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the ids, date opened, name, and other details for all accounts?
SELECT account_id , date_account_opened , account_name , other_account_details FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the id, the account name, and other account details for all accounts by the customer with first name 'Meaghan'.
SELECT T1.account_id , T1.date_account_opened , T1.account_name , T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan'
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the ids, names, dates of opening, and other details for accounts corresponding to the customer with the first name "Meaghan"?
SELECT T1.account_id , T1.date_account_opened , T1.account_name , T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan'
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the account name and other account detail for all accounts by the customer with first name Meaghan and last name Keeling.
SELECT T1.account_name , T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Meaghan" AND T2.customer_last_name = "Keeling"
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the names and other details for accounts corresponding to the customer named Meaghan Keeling?
SELECT T1.account_name , T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Meaghan" AND T2.customer_last_name = "Keeling"
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the first name and last name for the customer with account name 900.
SELECT T2.customer_first_name , T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "900"
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the full names of customers with the account name 900?
SELECT T2.customer_first_name , T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "900"
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many customers don't have an account?
SELECT count(*) FROM Customers WHERE customer_id NOT IN (SELECT customer_id FROM Accounts)
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of customers who do not have an account.
SELECT count(*) FROM Customers WHERE customer_id NOT IN (SELECT customer_id FROM Accounts)
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the unique first names, last names, and phone numbers for all customers with any account.
SELECT DISTINCT T1.customer_first_name , T1.customer_last_name , T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the distinct first names, last names, and phone numbers for customers with accounts?
SELECT DISTINCT T1.customer_first_name , T1.customer_last_name , T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show customer ids who don't have an account.
SELECT customer_id FROM Customers EXCEPT SELECT customer_id FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the customer ids for customers who do not have an account?
SELECT customer_id FROM Customers EXCEPT SELECT customer_id FROM Accounts
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many accounts does each customer have? List the number and customer id.
SELECT count(*) , customer_id FROM Accounts GROUP BY customer_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of accounts corresponding to each customer id.
SELECT count(*) , customer_id FROM Accounts GROUP BY customer_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What is the customer id, first and last name with most number of accounts.
SELECT T1.customer_id , T2.customer_first_name , T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY count(*) DESC LIMIT 1
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Return the id and full name of the customer with the most accounts.
SELECT T1.customer_id , T2.customer_first_name , T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY count(*) DESC LIMIT 1
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show id, first name and last name for all customers and the number of accounts.
SELECT T1.customer_id , T2.customer_first_name , T2.customer_last_name , count(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the the full names and ids for all customers, and how many accounts does each have?
SELECT T1.customer_id , T2.customer_first_name , T2.customer_last_name , count(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show first name and id for all customers with at least 2 accounts.
SELECT T2.customer_first_name , T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) >= 2
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the first names and ids for customers who have two or more accounts?
SELECT T2.customer_first_name , T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) >= 2
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the number of customers.
SELECT count(*) FROM Customers
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of customers.
SELECT count(*) FROM Customers
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the number of customers for each gender.
SELECT gender , count(*) FROM Customers GROUP BY gender
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many customers are there of each gender?
SELECT gender , count(*) FROM Customers GROUP BY gender
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many transactions do we have?
SELECT count(*) FROM Financial_transactions
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of transactions.
SELECT count(*) FROM Financial_transactions
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many transaction does each account have? Show the number and account id.
SELECT count(*) , account_id FROM Financial_transactions
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of financial transactions that correspond to each account id.
SELECT count(*) , account_id FROM Financial_transactions
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
How many transaction does account with name 337 have?
SELECT count(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id WHERE T2.account_name = "337"
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Count the number of financial transactions that the account with the name 337 has.
SELECT count(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id WHERE T2.account_name = "337"
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What is the average, minimum, maximum, and total transaction amount?
SELECT avg(transaction_amount) , min(transaction_amount) , max(transaction_amount) , sum(transaction_amount) FROM Financial_transactions
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Return the average, minimum, maximum, and total transaction amounts.
SELECT avg(transaction_amount) , min(transaction_amount) , max(transaction_amount) , sum(transaction_amount) FROM Financial_transactions
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show ids for all transactions whose amounts are greater than the average.
SELECT transaction_id FROM Financial_transactions WHERE transaction_amount > (SELECT avg(transaction_amount) FROM Financial_transactions)
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the ids for transactions that have an amount greater than the average amount of a transaction?
SELECT transaction_id FROM Financial_transactions WHERE transaction_amount > (SELECT avg(transaction_amount) FROM Financial_transactions)
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the transaction types and the total amount of transactions.
SELECT transaction_type , sum(transaction_amount) FROM Financial_transactions GROUP BY transaction_type
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are total transaction amounts for each transaction type?
SELECT transaction_type , sum(transaction_amount) FROM Financial_transactions GROUP BY transaction_type
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the account name, id and the number of transactions for each account.
SELECT T2.account_name , T1.account_id , count(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id GROUP BY T1.account_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Return the names and ids of each account, as well as the number of transactions.
SELECT T2.account_name , T1.account_id , count(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id GROUP BY T1.account_id
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the account id with most number of transactions.
SELECT account_id FROM Financial_transactions GROUP BY account_id ORDER BY count(*) DESC LIMIT 1
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What is the id of the account with the most transactions?
SELECT account_id FROM Financial_transactions GROUP BY account_id ORDER BY count(*) DESC LIMIT 1
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the account id and name with at least 4 transactions.
SELECT T1.account_id , T2.account_name FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id GROUP BY T1.account_id HAVING count(*) >= 4
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the ids and names of accounts with 4 or more transactions?
SELECT T1.account_id , T2.account_name FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id GROUP BY T1.account_id HAVING count(*) >= 4
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show all product sizes.
SELECT DISTINCT product_size FROM Products
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the different product sizes?
SELECT DISTINCT product_size FROM Products
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show all product colors.
SELECT DISTINCT product_color FROM Products
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
What are the different product colors?
SELECT DISTINCT product_color FROM Products
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93
customers_and_invoices
Show the invoice number and the number of transactions for each invoice.
SELECT invoice_number , count(*) FROM Financial_transactions GROUP BY invoice_number
CREATE TABLE `Customers` ( `customer_id` INTEGER PRIMARY KEY, `customer_first_name` VARCHAR(50), `customer_middle_initial` VARCHAR(1), `customer_last_name` VARCHAR(50), `gender` VARCHAR(1), `email_address` VARCHAR(255), `login_name` VARCHAR(80), `login_password` VARCHAR(20), `phone_number` VARCHAR(255), `town_city` VARCHAR(50), `state_county_province` VARCHAR(50), `country` VARCHAR(50) ) 3 rows from Customers table: customer_id customer_first_name customer_middle_initial customer_last_name gender email_address login_name login_password phone_number town_city state_county_province country 1 Dee A Larkin 1 thora.torphy@example.org xhartmann 77789d292604ea04406f 241.796.1219x37862 North Nellie WestVirginia USA 2 Brennon H Weimann 0 roosevelt.collier@example.org shayne.lesch ce97a3e4539347daab96 (943)219-4234x415 South Isabell Oklahoma USA 3 Joesph K Schaefer 0 homenick.ambrose@example.net feeney.lauriane a6c7a7064c36b038d402 (488)524-5345 New Nikolas Arkansas USA CREATE TABLE `Orders` ( `order_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_order_placed` DATETIME NOT NULL, `order_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Orders table: order_id customer_id date_order_placed order_details 1 12 2012-06-27 20:49:56 None 2 12 2012-08-25 07:51:54 None 3 8 2017-11-05 15:32:38 None CREATE TABLE `Invoices` ( `invoice_number` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `invoice_date` DATETIME, FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Invoices table: invoice_number order_id invoice_date 1 9 2018-03-01 16:40:48 2 9 2018-03-20 00:21:41 3 3 2018-03-05 08:47:33 CREATE TABLE `Accounts` ( `account_id` INTEGER PRIMARY KEY, `customer_id` INTEGER NOT NULL, `date_account_opened` DATETIME, `account_name` VARCHAR(50), `other_account_details` VARCHAR(255), FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) ) 3 rows from Accounts table: account_id customer_id date_account_opened account_name other_account_details 1 8 2016-07-30 22:22:24 900 Regular 2 3 2017-05-29 16:45:17 520 VIP 3 8 2012-05-04 18:50:32 323 Regular CREATE TABLE `Product_Categories` ( `production_type_code` VARCHAR(15) PRIMARY KEY, `product_type_description` VARCHAR(80), `vat_rating` DECIMAL(19,4) ) 3 rows from Product_Categories table: production_type_code product_type_description vat_rating Food Food 15.84 DVDs Dvd products 11.40 Books Books 13.95 CREATE TABLE `Products` ( `product_id` INTEGER PRIMARY KEY, `parent_product_id` INTEGER, `production_type_code` VARCHAR(15) NOT NULL, `unit_price` DECIMAL(19,4), `product_name` VARCHAR(80), `product_color` VARCHAR(20), `product_size` VARCHAR(20), FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) ) 3 rows from Products table: product_id parent_product_id production_type_code unit_price product_name product_color product_size 1 4 Food 617.95 Coffee Bean Red Medium 2 4 Books 558.49 Learning French Yellow Medium 3 8 Electronics 563.58 Fans Black Medium CREATE TABLE `Financial_Transactions` ( `transaction_id` INTEGER NOT NULL , `account_id` INTEGER NOT NULL, `invoice_number` INTEGER, `transaction_type` VARCHAR(15) NOT NULL, `transaction_date` DATETIME, `transaction_amount` DECIMAL(19,4), `transaction_comment` VARCHAR(255), `other_transaction_details` VARCHAR(255), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) ) 3 rows from Financial_Transactions table: transaction_id account_id invoice_number transaction_type transaction_date transaction_amount transaction_comment other_transaction_details 1 13 12 Payment 2018-03-15 21:13:57 613.96 None None 2 9 1 Payment 2018-03-13 13:27:46 368.46 None None 3 6 1 Refund 2018-03-03 01:50:25 1598.25 None None CREATE TABLE `Order_Items` ( `order_item_id` INTEGER PRIMARY KEY, `order_id` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_quantity` VARCHAR(50), `other_order_item_details` VARCHAR(255), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) ) 3 rows from Order_Items table: order_item_id order_id product_id product_quantity other_order_item_details 1 4 4 6 None 2 4 10 7 None 3 15 5 4 None CREATE TABLE `Invoice_Line_Items` ( `order_item_id` INTEGER NOT NULL, `invoice_number` INTEGER NOT NULL, `product_id` INTEGER NOT NULL, `product_title` VARCHAR(80), `product_quantity` VARCHAR(50), `product_price` DECIMAL(19,4), `derived_product_cost` DECIMAL(19,4), `derived_vat_payable` DECIMAL(19,4), `derived_total_cost` DECIMAL(19,4), FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) ) 3 rows from Invoice_Line_Items table: order_item_id invoice_number product_id product_title product_quantity product_price derived_product_cost derived_vat_payable derived_total_cost 14 9 5 prod_name 4 742.37 191.11 None 69.82 3 9 15 prod_name 1 814.87 176.29 None 59.56 4 10 15 prod_name 8 943.07 73.14 None 59.93