id
int64
0
9.43k
db_id
stringclasses
69 values
schema
stringclasses
69 values
question
stringlengths
24
325
output
stringlengths
23
804
evidence
stringlengths
0
673
filtered_schema
listlengths
0
16
2,400
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Calculate the total cost of the orders by Brad Thomas in 2016.
SELECT SUM((T1.Sales / (1 - T1.Discount)) * T1.Quantity - T1.Profit) AS cost FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T1.`Product ID` = T3.`Product ID` AND T1.Region = T3.Region WHERE T1.Region = 'East' AND T2.`Customer Name` = 'Brad Thomas' A...
Brad Thomas is the "Customer Name"; in 2016 refers to strftime('%Y', "Order Date") = '2016'; total cost refers to SUM(SUTRACT(MULTIPLY(DIVIDE(Sales, SUTRACT(1, discount)), Quantity), Profit))
[ "east_superstore.Discount", "east_superstore.Profit", "east_superstore.Quantity", "east_superstore.Region", "east_superstore.Sales", "east_superstore.`Customer ID`", "east_superstore.`Order Date`", "east_superstore.`Product ID`", "people.`Customer ID`", "people.`Customer Name`", "product.Region"...
2,401
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Provide the names, cities, and countries of the customers who ordered the Plantronics single ear headset.
SELECT DISTINCT T2.`Customer Name`, T2.City, T2.Country FROM west_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T3.`Product Name` = 'Plantronics Single Ear Headset'
Plantronics Single Ear Headset' is the "Product Name"; name refers to "Customer Name";
[ "people.City", "people.Country", "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`", "west_superstore.`Customer ID`", "west_superstore.`Product ID`" ]
2,402
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Provide the shipping dates and products of the orders by Gene Hale.
SELECT DISTINCT T2.`Ship Date`, T3.`Product Name` FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T2.`Product ID` WHERE T1.`Customer Name` = 'Gene Hale'
Gene Hale' refers to "Customer Name"; shipping date refers to "Ship Date"; products refers to "Product Name"
[ "central_superstore.`Customer ID`", "central_superstore.`Product ID`", "central_superstore.`Ship Date`", "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`" ]
2,403
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders in the south superstore with the fastest delivery are items of furniture?
SELECT COUNT(T1.`Order ID`) FROM south_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T1.`Ship Mode` = 'First Class' AND T2.Category = 'Furniture'
fastest delivery refers to Ship Mode = 'First Class'; furniture refers to Category = 'Furniture'
[ "product.Category", "product.`Product ID`", "south_superstore.`Order ID`", "south_superstore.`Product ID`", "south_superstore.`Ship Mode`" ]
2,404
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many office supply orders were made by Cindy Stewart in the south superstore?
SELECT COUNT(*) FROM south_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T3.Category = 'Office Supplies' AND T2.`Customer Name` = 'Cindy Stewart'
office supply refers to Category = 'Office Supplies'
[ "people.`Customer ID`", "people.`Customer Name`", "product.Category", "product.`Product ID`", "south_superstore.`Customer ID`", "south_superstore.`Product ID`" ]
2,405
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What product category got the highest profit in the south superstore?
SELECT T2.Category FROM south_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` ORDER BY T1.Profit DESC LIMIT 1
highest profit refers to MAX(Profit)
[ "product.Category", "product.`Product ID`", "south_superstore.Profit", "south_superstore.`Product ID`" ]
2,406
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
List the name of all products that Cindy Stewart ordered in the east superstore.
SELECT T3.`Product Name` FROM south_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T2.`Customer Name` = 'Cindy Stewart'
name of all products refers to Product Name; Cindy Stewart is the Customer Name;
[ "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`", "south_superstore.`Customer ID`", "south_superstore.`Product ID`" ]
2,407
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
List the name of all products in the west superstore that customers chose for same-day shipment in the year 2013.
SELECT T2.`Product Name` FROM west_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T1.`Ship Mode` = 'Same Day' AND T1.`Ship Date` LIKE '2013%'
name of all products refers to Product Name; same-day shipment refers to "Ship Mode" = 'Same Day'; year 2013 refers to "Ship Date" BETWEEN '2013-01-01' AND '2013-12-31'
[ "product.`Product ID`", "product.`Product Name`", "west_superstore.`Product ID`", "west_superstore.`Ship Date`", "west_superstore.`Ship Mode`" ]
2,408
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What product category that Sam Craven ordered from the central and east superstore?
SELECT DISTINCT T3.Category FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` LEFT JOIN central_superstore AS T4 ON T3.`Product ID` = T4.`Product ID` WHERE T2.`Customer Name` = 'Sam Craven'
[ "central_superstore.`Product ID`", "east_superstore.`Customer ID`", "east_superstore.`Product ID`", "people.`Customer ID`", "people.`Customer Name`", "product.Category", "product.`Product ID`" ]
2,409
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the total quantity that Cindy Stewart order "Lexmark X 9575 Professional All-in-One Color Printer" in the south superstore?
SELECT SUM(T1.Quantity) FROM south_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T2.`Customer Name` = 'Cindy Stewart' AND T3.`Product Name` = 'Lexmark X 9575 Professional All-in-One Color Printer'
Lexmark X 9575 Professional All-in-One Color Printer' is the "Product Name"
[ "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`", "south_superstore.Quantity", "south_superstore.`Customer ID`", "south_superstore.`Product ID`" ]
2,410
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
List the name of all the products with order quantities greater than or equal to 10 in the central superstore that has been shipped by the slowest delivery method.
SELECT DISTINCT T2.`Product Name` FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T1.`Ship Mode` = 'Standard Class' AND T1.Quantity >= 10
name of all the products refers to Product Name; order quantities greater than or equal to 10 refers to COUNT("Order ID") > = 10; slowest delivery refers to "Ship Mode" = 'Standard Class'
[ "central_superstore.Quantity", "central_superstore.`Product ID`", "central_superstore.`Ship Mode`", "product.`Product ID`", "product.`Product Name`" ]
2,411
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What product category got the least sales in the west superstore?
SELECT T2.Category FROM west_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` ORDER BY T1.Sales LIMIT 1
least sales refers to Sales = MIN(Sales)
[ "product.Category", "product.`Product ID`", "west_superstore.Sales", "west_superstore.`Product ID`" ]
2,412
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the total profit of "Memorex Froggy Flash Drive 8 GB in south superstore?
SELECT SUM(T1.Profit) FROM south_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` GROUP BY T2.`Product Name` = 'Memorix Froggy Flash Drive 8 GB'
"Memorix Froggy Flash Drive 8 GB" is the "Product Name"
[ "product.`Product ID`", "product.`Product Name`", "south_superstore.Profit", "south_superstore.`Product ID`" ]
2,413
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the total sales of furniture products in the east superstore in the year 2016.
SELECT SUM(T1.Sales) FROM east_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE STRFTIME('%Y', T1.`Order Date`) = '2016' AND T2.Category = 'Furniture'
furniture products refers to Category = 'Furnitures'; in the year 2016 refers to "Order Date" BETWEEN '2016-01-01' AND '2016-12-31'
[ "east_superstore.Sales", "east_superstore.`Order Date`", "east_superstore.`Product ID`", "product.Category", "product.`Product ID`" ]
2,414
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Calculate the average sales of ""Sharp AL-1530CS Digital Copier in the east and the west superstore.
SELECT AVG(T1.Sales) FROM west_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T3.`Product Name` = 'Sharp AL-1530CS Digital Copier'
Sharp AL-1530CS Digital Copier' is the "Product Name"; average sales = AVG(Sales)
[ "people.`Customer ID`", "product.`Product ID`", "product.`Product Name`", "west_superstore.Sales", "west_superstore.`Customer ID`", "west_superstore.`Product ID`" ]
2,415
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Calculate the percentage of ordered office supplies products in the central and the south superstore.
SELECT CAST(SUM(CASE WHEN T3.Category = 'Office Supplies' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T3.Category) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T2.`Product ID`
office supplies products refers to Category = 'Office Supplies'; central refers to Region = 'Central'; south superstore refers to Region = 'South'; percentage = divide(SUM(Product ID where Category = 'Office Supplies'), count(Product ID)) * 100 where Region = 'Central' OR Region = 'South'
[ "central_superstore.`Customer ID`", "central_superstore.`Product ID`", "people.`Customer ID`", "product.Category", "product.`Product ID`" ]
2,416
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the ratio between customers who live in Texas and customers who live in Indiana?
SELECT CAST(SUM(CASE WHEN State = 'Texas' THEN 1 ELSE 0 END) AS REAL) * 100 / SUM(CASE WHEN State = 'Indiana' THEN 1 ELSE 0 END) FROM people
live in Texas refers to State = 'Texas'; live in Indiana refers to State = 'Indiana'; Ratio = divide(sum(State = 'Texas'), sum(State = 'Indiana'))
[ "people.State" ]
2,417
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Among the orders in Central superstore, which art product were ordered the most?
SELECT T2.`Product Name` FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Sub-Category` = 'Art' GROUP BY T2.`Product Name` ORDER BY COUNT(T2.`Product ID`) DESC LIMIT 1
art product refers to Sub-Category = 'Art'; the most refers to max(order_number)
[ "central_superstore.`Product ID`", "product.Sub-Category", "product.`Product ID`", "product.`Product Name`" ]
2,418
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Among the customers in South superstore, which customers ordered more than 3 times in 2015? State the name of the customers.
SELECT DISTINCT T2.`Customer Name` FROM south_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE STRFTIME('%Y', T1.`Order Date`) = '2015' GROUP BY T2.`Customer Name` HAVING COUNT(T2.`Customer Name`) > 3
name of the customers refers to Customer_Name; in 2015 refers to "Order Date" BETWEEN '2015-01-01' AND '2015-12-31'; more than 3 times refers to count(Order_ID) > 3
[ "people.`Customer ID`", "people.`Customer Name`", "south_superstore.`Customer ID`", "south_superstore.`Order Date`" ]
2,419
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
State the highest profit made by Anna Chung's orders in the Central Superstore.
SELECT MAX(T2.Profit) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Customer Name` = 'Anna Chung'
highest profit refers to max(Profit)
[ "central_superstore.Profit", "central_superstore.`Customer ID`", "people.`Customer ID`", "people.`Customer Name`" ]
2,420
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders were made by Corey Roper in 2015?
SELECT COUNT(T2.`Customer ID`) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Customer Name` = 'Corey Roper' AND STRFTIME('%Y', T2.`Ship Date`) = '2015'
[ "central_superstore.`Customer ID`", "central_superstore.`Ship Date`", "people.`Customer ID`", "people.`Customer Name`" ]
2,421
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Calculate the difference between the total sales in the East superstore and the total sales in the West superstore.
SELECT SUM(T1.Sales) - SUM(T2.Sales) AS difference FROM east_superstore AS T1 INNER JOIN west_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID`
East superstore refers to Region = 'East'; West superstore refers to Region = 'West'; difference = subtract(sum(Sales) when Region = 'East', sum(Sales) when Region = 'West')
[ "east_superstore.Sales", "east_superstore.`Customer ID`", "west_superstore.Sales", "west_superstore.`Customer ID`" ]
2,422
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What are the names of the ordered products that have profit deficiency in central superstore?
SELECT DISTINCT T2.`Product Name` FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Region = 'Central' AND T1.Profit < 0
names of the ordered products refers to Product Name; deficiency refers to profit value is negative; profit > 0
[ "central_superstore.Profit", "central_superstore.`Product ID`", "product.Region", "product.`Product ID`", "product.`Product Name`" ]
2,423
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
In west superstore, what is the name and the shipping mode of the product that was ordered with the shortest shipment time?
SELECT DISTINCT T2.`Product Name`, T1.`Ship Mode` FROM west_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Region = 'West' ORDER BY T1.`Ship Date` - T1.`Order Date` LIMIT 1
name refers to "Product Name"; shipping mode refers to Ship Mode; shortest shipment time refers to min(subtract(Ship Date, Order Date))
[ "product.Region", "product.`Product ID`", "product.`Product Name`", "west_superstore.`Order Date`", "west_superstore.`Product ID`", "west_superstore.`Ship Date`", "west_superstore.`Ship Mode`" ]
2,424
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders of O'Sullivan Plantations 2-Door Library in Landvery Oak in central superstore were shipped through the shipping mode with the fastest delivery speed?
SELECT COUNT(DISTINCT T1.`Order ID`) FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Product Name` = 'O''Sullivan Plantations 2-Door Library in Landvery Oak' AND T2.Region = 'Central' AND T1.`Ship Mode` = 'First Class'
'O'Sullivan Cherrywood Estates Traditional Bookcase' is the "Product Name"; shipping mode with the fastest delivery speed refers to "Ship Mode" = 'First Class'
[ "central_superstore.`Order ID`", "central_superstore.`Product ID`", "central_superstore.`Ship Mode`", "product.Region", "product.`Product ID`", "product.`Product Name`" ]
2,425
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the name of the corporate customer from Rhode Island who had the highest number of orders in 2016 from the east superstore?
SELECT T2.`Customer Name` FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T2.Segment = 'Corporate' AND T2.State = 'Rhode Island' AND T2.Region = 'East' AND STRFTIME('%Y', T1.`Order Date`) = '2016' GROUP BY T2.`Customer Name` ORDER BY COUNT(T2.`Customer Name`) DESC LIMIT 1
corporate customer refers to Segment = 'Corporate'; Rhode Island refers to State = 'Rhode Island'; in 2016 refers to "Order Date" BETWEEN '2016-01-01' AND '2016-12-31'; east superstore refers to Region = 'East'; highest number of orders refers to max(order_number); name of corporate customer refers to "Customer Name"
[ "east_superstore.`Customer ID`", "east_superstore.`Order Date`", "people.Region", "people.Segment", "people.State", "people.`Customer ID`", "people.`Customer Name`" ]
2,426
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Among the orders with sales value of no less than 5,000 in west superstore, how many were bought by the customers in California?
SELECT COUNT(DISTINCT T1.`Order ID`) FROM west_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` INNER JOIN people AS T3 ON T3.`Customer ID` = T1.`Customer ID` WHERE T1.Sales > 5000 AND T3.State = 'California' AND T2.Region = 'West'
customers in California refers to State = 'California'; orders with sales value of no less than 5,000 refers to Sales > = 5,000
[ "people.State", "people.`Customer ID`", "product.Region", "product.`Product ID`", "west_superstore.Sales", "west_superstore.`Customer ID`", "west_superstore.`Order ID`", "west_superstore.`Product ID`" ]
2,427
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
In which segment does the customer who purchased the product from the east superstore with the highest original price belong?
SELECT T2.Segment FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T1.Region = 'East' ORDER BY (T1.Sales / (1 - T1.Discount)) DESC LIMIT 1
highest original price refers to max(divide(Sales, subtract(1, Discount)))
[ "east_superstore.Discount", "east_superstore.Region", "east_superstore.Sales", "east_superstore.`Customer ID`", "east_superstore.`Product ID`", "people.Segment", "people.`Customer ID`", "product.`Product ID`" ]
2,428
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the shipment duration for order number CA-2011-134103?
SELECT DISTINCT strftime('%J', `Ship Date`) - strftime('%J', `Order Date`) AS duration FROM central_superstore WHERE `Order ID` = 'CA-2011-134103'
shipment duration = subtract("Ship Date", "Order Date"); order number CA-2011-134103 refers to "Order ID" = 'CA-2011-134103'
[ "central_superstore.`Order Date`", "central_superstore.`Order ID`", "central_superstore.`Ship Date`" ]
2,429
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders with a quantity greater than 5 have been shipped by the fastest delivery method?
SELECT COUNT(DISTINCT `Order ID`) FROM central_superstore WHERE Quantity > 5 AND `Ship Mode` = 'First Class'
orders with a quantity greater than 5 refers to Quantity > 5; shipped by the fastest delivery method refers to Ship Mode = 'First Class'
[ "central_superstore.Quantity", "central_superstore.`Order ID`", "central_superstore.`Ship Mode`" ]
2,430
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Please list any three orders that caused a loss to the company.
SELECT `Order ID` FROM central_superstore WHERE Profit < 0 LIMIT 3
caused a loss to the company refers to Profit < 0
[ "central_superstore.Profit", "central_superstore.`Order ID`" ]
2,431
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Which product did Phillina Ober buy?
SELECT DISTINCT T3.`Product Name` FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T2.`Product ID` WHERE T1.`Customer Name` = 'Phillina Ober'
product refers to "Product Name"
[ "central_superstore.`Customer ID`", "central_superstore.`Product ID`", "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`" ]
2,432
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Who was the customer in the South Region superstore who bought the most “Hon Multipurpose Stacking Arm Chairs"?
SELECT T2.`Customer Name` FROM south_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T3.`Product Name` = 'Hon Multipurpose Stacking Arm Chairs' GROUP BY T2.`Customer Name` ORDER BY COUNT(T2.`Customer Name`) DESC LIMIT 1
customer refers to "Customer Name"; “Hon Multipurpose Stacking Arm Chairs" is the "Product Name";
[ "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`", "south_superstore.`Customer ID`", "south_superstore.`Product ID`" ]
2,433
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the profit from selling the "O'Sullivan Living Dimensions 2-Shelf Bookcases"?
SELECT DISTINCT T1.Profit FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Product Name` = 'O''Sullivan Living Dimensions 2-Shelf Bookcases'
"O'Sullivan Living Dimensions 2-Shelf Bookcases" refers to "Product Name"
[ "central_superstore.Profit", "central_superstore.`Product ID`", "product.`Product ID`", "product.`Product Name`" ]
2,434
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many of the "Hon Pagoda Stacking Chairs" have been sold in total in the west superstore?
SELECT SUM(T1.Quantity) FROM west_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Product Name` = 'Hon Pagoda Stacking Chairs'
Hon Pagoda Stacking Chairs' is the "Product Name"; west superstore refers to Region = 'West'
[ "product.`Product ID`", "product.`Product Name`", "west_superstore.Quantity", "west_superstore.`Product ID`" ]
2,435
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders purchased by Aaron Bergman have been delivered with the slowest shipping speed?
SELECT COUNT(*) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Customer Name` = 'Aaron Bergman' AND T2.`Ship Mode` = 'Standard Class'
slowest shipping speed refers to "Ship Mode" = 'Standard Class'
[ "central_superstore.`Customer ID`", "central_superstore.`Ship Mode`", "people.`Customer ID`", "people.`Customer Name`" ]
2,436
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the original price of the "Black Avery Flip-Chart Easel Binder"?
SELECT T1.Sales / (1 - T1.Discount) FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Product Name` = 'Blackstonian Pencils'
"Black Avery Flip-Chart Easel Binder" is the "Product Name"; original price = divide(Sales, subtract(1, Discount))
[ "central_superstore.Discount", "central_superstore.Sales", "central_superstore.`Product ID`", "product.`Product ID`", "product.`Product Name`" ]
2,437
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the name of the product that Aimee Bixby bought?
SELECT DISTINCT T3.`Product Name` FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T1.`Product ID` WHERE T2.`Customer Name` = 'Aimee Bixby'
name of the product refers to "Product Name"
[ "east_superstore.`Customer ID`", "east_superstore.`Product ID`", "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`" ]
2,438
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Indicate the profit of product Sauder Camden County Barrister Bookcase, Planked Cherry Finish.
SELECT DISTINCT T1.Profit FROM south_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Product Name` = 'Sauder Camden County Barrister Bookcase, Planked Cherry Finish'
Sauder Camden County Barrister Bookcase, Planked Cherry Finish' refers to "Product Name"
[ "product.`Product ID`", "product.`Product Name`", "south_superstore.Profit", "south_superstore.`Product ID`" ]
2,439
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many furniture products had been shipped by standard class in the East superstore?
SELECT COUNT(T2.Category) FROM east_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T1.`Ship Mode` = 'Standard Class'
furniture products refers to Category = 'Furniture'; shipped by standard class refers to "Ship Mode" = 'Standard Class'
[ "east_superstore.`Product ID`", "east_superstore.`Ship Mode`", "product.Category", "product.`Product ID`" ]
2,440
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the highest profit order in the East superstore of customers from Houston, Texas?
SELECT T1.`Order ID` FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T2.City = 'Houston' AND T2.State = 'Texas' ORDER BY T1.Profit DESC LIMIT 1
highest profit refers to max(Profit); Houston, Texas refers to City = 'Houston' and State = 'Texas'
[ "east_superstore.Profit", "east_superstore.`Customer ID`", "east_superstore.`Order ID`", "people.City", "people.State", "people.`Customer ID`" ]
2,441
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many furniture products were ordered at central superstore?
SELECT COUNT(*) FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Category = 'Furniture'
furniture products refers to Category = 'Furniture'
[ "central_superstore.`Product ID`", "product.Category", "product.`Product ID`" ]
2,442
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What are the names of the products that had been shipped in March 2013 at central superstore?
SELECT DISTINCT T2.`Product Name` FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE strftime('%Y-%m', T1.`Ship Date`) = '2013-03'
names of the products refers to Product Name; shipped in March 2013 refers to "Ship Date" = '2013-03%'
[ "central_superstore.`Product ID`", "central_superstore.`Ship Date`", "product.`Product ID`", "product.`Product Name`" ]
2,443
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders were made by customers who live in Texas at the Central superstore?
SELECT COUNT(DISTINCT T2.`Order ID`) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.State = 'Texas'
customer live in Texas refers to State = 'Texas'
[ "central_superstore.`Customer ID`", "central_superstore.`Order ID`", "people.State", "people.`Customer ID`" ]
2,444
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
How many orders were made by Alan Barnes in 2015 at the Central superstore?
SELECT COUNT(DISTINCT T2.`Order ID`) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Customer Name` = 'Alan Barnes' AND STRFTIME('%Y', T2.`Order Date`) = '2015'
in 2015 refers to "Order Date" = '2015%'
[ "central_superstore.`Customer ID`", "central_superstore.`Order Date`", "central_superstore.`Order ID`", "people.`Customer ID`", "people.`Customer Name`" ]
2,445
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the product name of order CA-2011-115791 in the East superstore?
SELECT DISTINCT T2.`Product Name` FROM east_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T1.`Order ID` = 'CA-2011-141817'
order CA-2011-115791 refers to "Order ID" = 'CA-2011-115791'
[ "east_superstore.`Order ID`", "east_superstore.`Product ID`", "product.`Product ID`", "product.`Product Name`" ]
2,446
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the percentage of orders with 0.2 discount in the Central superstore were purchased by customers who live in Texas?
SELECT CAST(SUM(CASE WHEN T2.Discount = 0.2 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(*) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.State = 'Texas'
live in Texas refers to State = 'Texas'; percentage = divide(sum(Order ID) when Discount = 0.2, sum(Order ID)) as percentage
[ "central_superstore.Discount", "central_superstore.`Customer ID`", "people.State", "people.`Customer ID`" ]
2,447
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the percentage of furniture orders that were shipped through first class in 2013 at the Central superstore?
SELECT CAST(SUM(CASE WHEN T1.`Ship Mode` = 'First Class' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(*) FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Category = 'Furniture' AND STRFTIME('%Y', T1.`Ship Date`) = '2013'
furniture refers to Category = 'Furniture'; shipped through first class in 2013 refers to ship mode = 'first class' and "Ship Date" = '2013%'; percentage = divide(sum(Order ID) when Category = 'Furniture' and "Ship Date" = '2013%', sum(Order ID)) as percentage
[ "central_superstore.`Product ID`", "central_superstore.`Ship Date`", "central_superstore.`Ship Mode`", "product.Category", "product.`Product ID`" ]
2,448
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Who order from the west region on August 12, 2013, and received a discount of 0.2?
SELECT DISTINCT T2.`Customer Name` FROM west_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Order Date` = '2013-08-12' AND T1.Discount = 0.2 AND T1.Region = 'West'
Who refers to "Customer Name"; on August 12, 2013 refers to "Order Date" = '2013-08-12'; discount of 0.2 refers to discount = 0.2
[ "people.`Customer ID`", "people.`Customer Name`", "west_superstore.Discount", "west_superstore.Region", "west_superstore.`Customer ID`", "west_superstore.`Order Date`" ]
2,449
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the order ID of the security-Tint Envelopes product ordered on June 3, 2013, in the Central region?
SELECT DISTINCT T1.`Order ID` FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.`Product Name` = 'Security-Tint Envelopes' AND T1.`Order Date` = '2013-06-03'
Security-Tint Envelopes' refers to "Product Name"; ordered on June 3, 2013 refers to "Order Date" = '2013-06-03'
[ "central_superstore.`Order Date`", "central_superstore.`Order ID`", "central_superstore.`Product ID`", "product.`Product ID`", "product.`Product Name`" ]
2,450
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
List the product's name bought by the customer named Bill Shonely from the Central region.
SELECT DISTINCT T3.`Product Name` FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T2.`Product ID` WHERE T1.`Customer Name` = 'Bill Shonely' AND T2.Region = 'Central'
[ "central_superstore.Region", "central_superstore.`Customer ID`", "central_superstore.`Product ID`", "people.`Customer ID`", "people.`Customer Name`", "product.`Product ID`", "product.`Product Name`" ]
2,451
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Please give the name of customers from the West region that bought exactly 8 items in their purchase.
SELECT DISTINCT T2.`Customer Name` FROM west_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.Quantity = 8 AND T1.Region = 'West'
name of customers refers to "Customer Name"; bought exactly 8 items refers to Quantity = 8
[ "people.`Customer ID`", "people.`Customer Name`", "west_superstore.Quantity", "west_superstore.Region", "west_superstore.`Customer ID`" ]
2,452
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Among the customers from Houston, Texas, what is the total profit of their orders in the Central region?
SELECT SUM(T2.Profit) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` INNER JOIN product AS T3 ON T3.`Product ID` = T2.`Product ID` WHERE T1.City = 'Houston' AND T1.State = 'Texas' AND T2.Region = 'Central'
customers from Houston, Texas refers to State = 'Texas' and City = 'Houston'; total profit = sum(Profit)
[ "central_superstore.Profit", "central_superstore.Region", "central_superstore.`Customer ID`", "central_superstore.`Product ID`", "people.City", "people.State", "people.`Customer ID`", "product.`Product ID`" ]
2,453
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Who is the customer with an order shipped on March 5, 2013, in the eastern region?
SELECT DISTINCT T2.`Customer Name` FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Ship Date` = '2013-03-05'
Who is the customer refers to Customer Name; shipped on March 5, 2013 refers to "Ship Date" = '2013-03-05'; eastern region refers to Region = 'East'
[ "east_superstore.`Customer ID`", "east_superstore.`Ship Date`", "people.`Customer ID`", "people.`Customer Name`" ]
2,454
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Among the orders from 2016 in the Central region, what is the product with the lowest profit?
SELECT T2.`Product Name` FROM central_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Region = 'Central' AND STRFTIME('%Y', T1.`Order Date`) = '2016' ORDER BY T1.Profit ASC LIMIT 1
orders from 2016 refers to "Order Date" = '2016%'; product refers to "Product Name"; lowest profit refers to min(Profit)
[ "central_superstore.Profit", "central_superstore.`Order Date`", "central_superstore.`Product ID`", "product.Region", "product.`Product ID`", "product.`Product Name`" ]
2,455
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Who ordered the order ID CA-2011-118976 from the East region?
SELECT DISTINCT T2.`Customer Name` FROM east_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T1.`Order ID` = 'CA-2011-118976' AND T2.Region = 'East'
Who refers to "Customer Name"
[ "east_superstore.`Customer ID`", "east_superstore.`Order ID`", "people.Region", "people.`Customer ID`", "people.`Customer Name`" ]
2,456
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Provide the product's name of the product with the highest sales in the South region.
SELECT T2.`Product Name` FROM south_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Region = 'South' ORDER BY T1.Sales DESC LIMIT 1
highest sales refers to max(Sales)
[ "product.Region", "product.`Product ID`", "product.`Product Name`", "south_superstore.Sales", "south_superstore.`Product ID`" ]
2,457
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
List down the sales, profit, and subcategories of the product ordered in the order ID US-2011-126571 in the East region.
SELECT T1.Sales, T1.Profit, T2.`Sub-Category` FROM east_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T1.`Order ID` = 'US-2011-126571' AND T2.Region = 'East'
[ "east_superstore.Profit", "east_superstore.Sales", "east_superstore.`Order ID`", "east_superstore.`Product ID`", "product.Region", "product.Sub-Category", "product.`Product ID`" ]
2,458
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
What is the product's name in the highest quantity in a single purchase?
SELECT T2.`Product Name` FROM east_superstore AS T1 INNER JOIN product AS T2 ON T1.`Product ID` = T2.`Product ID` WHERE T2.Region = 'East' ORDER BY T1.Quantity DESC LIMIT 1
highest quantity refers to max(Quantity)
[ "east_superstore.Quantity", "east_superstore.`Product ID`", "product.Region", "product.`Product ID`", "product.`Product Name`" ]
2,459
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
List the customer's name from the South region with a standard class ship mode and sales greater than the 88% of the average sales of all orders.
SELECT DISTINCT T2.`Customer Name` FROM south_superstore AS T1 INNER JOIN people AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T2.Region = 'South' AND T1.`Ship Mode` = 'Standard Class' AND 100 * T1.Sales / ( SELECT AVG(Sales) FROM south_superstore ) > 88
sales greater than the 88% of the average sales of all orders refers to Sales > avg(Sales) * 0.88; South region refers to south_superstore
[ "people.Region", "people.`Customer ID`", "people.`Customer Name`", "south_superstore.Sales", "south_superstore.`Customer ID`", "south_superstore.`Ship Mode`" ]
2,460
superstore
CREATE TABLE people ( "Customer ID" TEXT, "Customer Name" TEXT, Segment TEXT, Country TEXT, City TEXT, State TEXT, "Postal Code" INTEGER, Region TEXT, primary key ("Customer ID", Region) ); CREATE TABLE product ( "Product ID" T...
Among the customers from Indiana, what is the percentage of their purchased orders in the Central region with no discount?
SELECT CAST(SUM(CASE WHEN T2.Discount = 0 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(*) FROM people AS T1 INNER JOIN central_superstore AS T2 ON T1.`Customer ID` = T2.`Customer ID` WHERE T2.Region = 'Central' AND T1.State = 'Indiana'
Indiana refers to State = 'Indiana'; no discount refers to Discount = 0; percentage = divide(sum(Discount) when Discount = 0, count(Discount)) as percentage
[ "central_superstore.Discount", "central_superstore.Region", "central_superstore.`Customer ID`", "people.State", "people.`Customer ID`" ]
2,461
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Among all the male officers, what is the percentage of them are White?
SELECT CAST(SUM(IIF(race = 'W', 1, 0)) AS REAL) * 100 / COUNT(case_number) FROM officers WHERE gender = 'M'
male refers to gender = 'M'; white refers to race = 'W'; percentage = divide(count(officers where race = 'W'), count(officers)) where gender = 'M' * 100%
[ "officers.case_number", "officers.gender", "officers.race" ]
2,462
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
What is the percentage of the cases involved more than 3 officers from year 2010 to 2015?
SELECT CAST(SUM(IIF(officer_count > 3, 1, 0)) AS REAL) * 100 / COUNT(case_number) FROM incidents WHERE STRFTIME('%Y', date) BETWEEN '2010' AND '2015'
more than 3 officers refers to officer_count > 3; from year 2010 to 2015 refers to date between '2010-01-01' and '2015-12-31'; percentage = divide(count(case_number where officer_count > 3), count(case_number)) where date between '2010-01-01' and '2015-12-31' * 100%
[ "incidents.case_number", "incidents.date", "incidents.officer_count" ]
2,463
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
In which year has the greatest number of cases where Handgun was used as weapon?
SELECT STRFTIME('%Y', date) FROM incidents WHERE subject_weapon = 'Handgun' GROUP BY STRFTIME('%Y', date) ORDER BY COUNT(case_number) DESC LIMIT 1
year refers to year(date); the greatest number of cases refers to max(count(case_number)); OS Spray was used as weapon refers to subject_weapon = 'OS Spray'
[ "incidents.case_number", "incidents.date", "incidents.subject_weapon" ]
2,464
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Among the cases dismissed by the grand jury disposition, what percentage of cases is where the subject is injured?
SELECT CAST(SUM(subject_statuses = 'Injured') AS REAL) * 100 / COUNT(case_number) FROM incidents WHERE grand_jury_disposition = 'No Bill'
dismissed by the grand jury disposition refers to grand_jury_disposition = 'No Bill'; the subject is injured refers to subject_statuses = 'injured'; percentage = divide(count(incidents where subject_statuses = 'injured'), count(incidents)) where grand_jury_disposition = 'No Bill' * 100%
[ "incidents.case_number", "incidents.grand_jury_disposition", "incidents.subject_statuses" ]
2,465
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Did the number of cases with Vehicle as subject weapon increase or decrease from year 2007 to 2008. State the difference.
SELECT SUM(IIF(STRFTIME('%Y', date) = '2007', 1, 0)) - SUM(IIF(STRFTIME('%Y', date) = '2008', 1, 0)) FROM incidents WHERE subject_weapon = 'Vehicle'
number of cases refers to count(case_number); with Vehicle as subject weapon refers to subject_weapon = 'Vehicle'; year 2007 refers to date between '2007-01-01' and '2007-12-31'; year 2008 refers to date between '2008-01-01' and '2008-12-31'
[ "incidents.date", "incidents.subject_weapon" ]
2,466
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Among the 'Handgun' weapon used by subject, how many percent were 'Shoot and Miss'?
SELECT CAST(SUM(subject_statuses = 'Shoot and Miss') AS REAL) * 100 / COUNT(case_number) FROM incidents WHERE subject_weapon = 'Handgun'
'Handgun' weapon refers to subject_weapon = 'Handgun'; 'Shoot and Miss' refers to subject_statuses = 'Shoot and Miss'; percent = divide(count(incidents where subject_statuses = 'Shoot and Miss'), count(incidents)) where subject_weapon = 'Handgun' * 100%
[ "incidents.case_number", "incidents.subject_statuses", "incidents.subject_weapon" ]
2,467
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Who are the officers involved in cases that are voted as 'No Bill'. List their last name and gender.
SELECT T2.last_name, T2.gender FROM incidents AS T1 INNER JOIN officers AS T2 ON T1.case_number = T2.case_number WHERE T1.grand_jury_disposition = 'No Bill'
voted as 'No Bill' refers to grand_jury_disposition = 'No Bill'
[ "incidents.case_number", "incidents.grand_jury_disposition", "officers.case_number", "officers.gender", "officers.last_name" ]
2,468
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Which are the cases where the subject are female. List the case number, subject status and weapon.
SELECT T1.case_number, T1.subject_statuses, T1.subject_weapon FROM incidents AS T1 INNER JOIN subjects AS T2 ON T1.case_number = T2.case_number WHERE T2.gender = 'F'
female refers to gender = 'F'; weapon refers to subject_weapon
[ "incidents.case_number", "incidents.subject_statuses", "incidents.subject_weapon", "subjects.case_number", "subjects.gender" ]
2,469
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
From the cases where the subject are male, list the case number and the location and subject status.
SELECT T1.case_number, T1.location, T1.subject_statuses FROM incidents AS T1 INNER JOIN subjects AS T2 ON T1.case_number = T2.case_number WHERE T2.gender = 'M'
male refers to gender = 'M'
[ "incidents.case_number", "incidents.location", "incidents.subject_statuses", "subjects.case_number", "subjects.gender" ]
2,470
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
For case(s) where officer 'Evenden, George' is in charged, state the case number and the grand jury disposition?
SELECT T1.case_number, T1.grand_jury_disposition FROM incidents AS T1 INNER JOIN officers AS T2 ON T1.case_number = T2.case_number WHERE T2.first_name = 'George' AND T2.last_name = 'Evenden'
officer 'Evenden, George' refers to full_name = 'Evenden, George'
[ "incidents.case_number", "incidents.grand_jury_disposition", "officers.case_number", "officers.first_name", "officers.last_name" ]
2,471
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
For case number '134472-2015', list the last name of the officers involved and state the subject statuses.
SELECT T2.last_name, T1.subject_statuses FROM incidents AS T1 INNER JOIN officers AS T2 ON T1.case_number = T2.case_number WHERE T1.case_number = '134472-2015'
[ "incidents.case_number", "incidents.subject_statuses", "officers.case_number", "officers.last_name" ]
2,472
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
From the cases where the subject were deceased, list the subject's last name, gender, race and case number.
SELECT T2.last_name, T2.gender, T2.race, T2.case_number FROM incidents AS T1 INNER JOIN subjects AS T2 ON T1.case_number = T2.case_number WHERE T1.subject_statuses = 'Deceased'
subject were deceased refers to subject_statuses = 'Deceased'
[ "incidents.case_number", "incidents.subject_statuses", "subjects.case_number", "subjects.gender", "subjects.last_name", "subjects.race" ]
2,473
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
What is the percentage of subject who are female used the Vehicle as weapon?
SELECT CAST(SUM(T1.subject_weapon = 'Vehicle') AS REAL) * 100 / COUNT(T1.case_number) FROM incidents T1 INNER JOIN subjects T2 ON T1.case_number = T2.case_number WHERE T2.gender = 'F'
female refers to gender = 'F'; use Vehicle as weapon refers to subject_weapon = 'Vehicle'; percentage = divide(count(case_number where subject_weapon = 'Vehicle'), count(case_number)) where gender = 'F' * 100%
[ "incidents.case_number", "incidents.subject_weapon", "subjects.case_number", "subjects.gender" ]
2,474
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
From the 'Injured' statuses of the subject, what is the ratio of weapons used are knife against handgun?
SELECT CAST(SUM(T1.subject_weapon = 'Knife') AS REAL) * 100 / SUM(T1.subject_weapon = 'Handgun') FROM incidents AS T1 INNER JOIN subjects AS T2 ON T1.case_number = T2.case_number WHERE T1.subject_statuses = 'Injured'
the 'Shoot and Miss' status refers to subject_statuses = 'Shoot and Miss'; knife refers to subject_weapon = 'knife'; toy handgun refers to subject_weapon = 'toy handgun'; ratio = divide(count(case_number where subject_weapon = 'knife'), count(case_number where subject_weapon = 'toy handgun')) where subject_statuses = '...
[ "incidents.case_number", "incidents.subject_statuses", "incidents.subject_weapon", "subjects.case_number" ]
2,475
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
List all cases from the year 2012 in which the subject was deceased
SELECT case_number FROM incidents WHERE STRFTIME('%Y', date) > '2011' AND subject_statuses = 'Deceased'
case refers to case_number; year 2012 refers to date between '2012-01-01' and '2012-12-31'; subject was deceased refers to subject_statuses = 'Deceased'
[ "incidents.case_number", "incidents.date", "incidents.subject_statuses" ]
2,476
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Of all male officers, what percentage are black officers?
SELECT CAST(SUM(race = 'B') AS REAL) * 100 / COUNT(case_number) FROM officers WHERE gender = 'M'
male refers to gender = 'M'; black refers to race = 'B'; percentage = divide(count(officers where race = 'B'), count(officers)) where gender = 'M' * 100%
[ "officers.case_number", "officers.gender", "officers.race" ]
2,477
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
How many incidents in which the subject's weapon was a vehicle were investigated by a female officer?
SELECT COUNT(T1.case_number) FROM incidents AS T1 INNER JOIN officers AS T2 ON T1.case_number = T2.case_number WHERE T1.subject_weapon = 'Vehicle' AND T2.gender = 'F'
subject's weapon was a vehicle refers to subject_weapon = 'Vehicle'; female refers to gender = 'F'
[ "incidents.case_number", "incidents.subject_weapon", "officers.case_number", "officers.gender" ]
2,478
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
In how many cases where the subject was a female was the subject's status listed as Deceased?
SELECT COUNT(T1.case_number) FROM incidents AS T1 INNER JOIN subjects AS T2 ON T1.case_number = T2.case_number WHERE T2.gender = 'F' AND T1.subject_statuses = 'Deceased'
female refers to gender = 'F'; subject's status listed as Deceased refers to subject_statuses = 'Deceased'
[ "incidents.case_number", "incidents.subject_statuses", "subjects.case_number", "subjects.gender" ]
2,479
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Of the black officers, how many of them investigated cases between the years 2010 and 2015?
SELECT COUNT(T1.case_number) FROM officers AS T1 INNER JOIN incidents AS T2 ON T2.case_number = T1.case_number WHERE T1.race = 'B' AND T2.date BETWEEN '2010-01-01' AND '2015-12-31'
black refers to race = 'B'; between the years 2010 and 2015 refers to date between '2010-01-01' and '2015-12-31'; case refers to case_number
[ "incidents.case_number", "incidents.date", "officers.case_number", "officers.race" ]
2,480
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
How many instances were found in June 2015?
SELECT COUNT(case_number) FROM incidents WHERE date BETWEEN '2015-06-01' AND '2015-06-30'
in June 2015 refers to date between '2015-06-01' and '2015-06-30'; record number refers to case_number
[ "incidents.case_number", "incidents.date" ]
2,481
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
How many people were injured between 2006 and 2014 as a result of a handgun?
SELECT COUNT(location) FROM incidents WHERE subject_weapon = 'Handgun' AND subject_statuses = 'Injured' AND date BETWEEN '2006-01-01' AND '2013-12-31'
injured refers to subject_statuses = 'injured'; between 2006 and 2014 refers to date between '2006-01-01' and '2013-12-31'; handgun refers to subject_weapon = 'handgun'; where the incidents took place refers to location
[ "incidents.date", "incidents.location", "incidents.subject_statuses", "incidents.subject_weapon" ]
2,482
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
What is the most common type of weapon that causes death?
SELECT subject_weapon FROM incidents WHERE subject_statuses = 'Deceased' GROUP BY subject_weapon ORDER BY COUNT(case_number) DESC LIMIT 1
the most common type of weapon refers to max(count(subject_weapon)); causes death refers to subject_statuses = 'Deceased'
[ "incidents.case_number", "incidents.subject_statuses", "incidents.subject_weapon" ]
2,483
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
What is the proportion of white males and females in the police force?
SELECT CAST(SUM(gender = 'M') AS REAL) / SUM(gender = 'F') FROM officers WHERE race = 'W'
white refers to race = 'W'; male refers to gender = 'M'; female refers to gender = 'F'; proportion of white males = divide(count(officers where race = 'W' and gender = 'M'), count(officers)) * 100%; proportion of white females = divide(count(officers where race = 'W' and gender = 'F'), count(officers)) * 100%
[ "officers.gender", "officers.race" ]
2,484
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
How many more black female victims than white female victims were discovered?
SELECT SUM(race = 'B') - SUM(race = 'W') FROM subjects WHERE gender = 'F'
black refers to race = 'B'; female refers to gender = 'F'; white refers to race = 'W'; result = subtract(count(victims where race = 'B'), count(victims where race = 'W')) where gender = 'F'
[ "subjects.gender", "subjects.race" ]
2,485
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
What percentage of deaths were caused by rifles?
SELECT CAST(SUM(subject_statuses = 'Deceased') AS REAL) * 100 / COUNT(case_number) FROM incidents WHERE subject_weapon = 'Rifle'
rifle refers to subject_weapon = 'rifles'; death refers to subject_statuses = 'Deceased'; percentage = divide(count(incidents where subject_weapon = 'rifles'), count(incidents)) where subject_statuses = 'Deceased' * 100%
[ "incidents.case_number", "incidents.subject_statuses", "incidents.subject_weapon" ]
2,486
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Which type of weapon was used to attack the victim in the record number 031347-2015? What is the victim's race and gender?
SELECT T1.subject_weapon, T2.race, T2.gender FROM incidents AS T1 INNER JOIN subjects AS T2 ON T1.case_number = T2.case_number WHERE T1.case_number = '031347-2015'
type of weapon refers to subject_weapon; record number 031347-2015 refers to case_number = '031347-2015'
[ "incidents.case_number", "incidents.subject_weapon", "subjects.case_number", "subjects.gender", "subjects.race" ]
2,487
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
Which near-death incident did a policeman by the name of Ruben Fredirick look into? What is the victim in this incident's race and gender?
SELECT T1.case_number, T3.race, T3.gender FROM incidents AS T1 INNER JOIN officers AS T2 ON T1.case_number = T2.case_number INNER JOIN subjects AS T3 ON T1.case_number = T3.case_number WHERE T2.first_name = 'Fredirick' AND T2.last_name = 'Ruben'
near-death refers to subject_statuses = 'Deceased Injured'; incident refers to case_number; Ruben Fredirick refers to full_name = 'Ruben Fredirick'
[ "incidents.case_number", "officers.case_number", "officers.first_name", "officers.last_name", "subjects.case_number", "subjects.gender", "subjects.race" ]
2,488
shooting
CREATE TABLE incidents ( case_number TEXT not null primary key, date DATE not null, location TEXT not null, subject_statuses TEXT not null, subject_weapon TEXT not null, subjects T...
What proportion of male police officers looked into events where people were injured?
SELECT CAST(SUM(T2.gender = 'M') AS REAL) * 100 / COUNT(T1.case_number) FROM incidents T1 INNER JOIN officers T2 ON T1.case_number = T2.case_number WHERE T1.subject_statuses = 'Injured'
male refers to gender = 'M'; people were injured refers to subject_statuses = 'Injured'; proportion = divide(count(case_number where gender = 'M'), count(case_number)) where subject_statuses = 'Injured' * 100%
[ "incidents.case_number", "incidents.subject_statuses", "officers.case_number", "officers.gender" ]
2,489
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
For the genes that are located in the plasma membrane, please list their number of chromosomes.
SELECT T1.Chromosome FROM Genes AS T1 INNER JOIN Classification AS T2 ON T1.GeneID = T2.GeneID WHERE T2.Localization = 'plasma membrane'
[ "Classification.GeneID", "Classification.Localization", "Genes.Chromosome", "Genes.GeneID" ]
2,490
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
How many non-essential genes are located in the nucleus?
SELECT COUNT(T1.GeneID) FROM Genes AS T1 INNER JOIN Classification AS T2 ON T1.GeneID = T2.GeneID WHERE T2.Localization = 'nucleus' AND T1.Essential = 'Non-Essential'
[ "Classification.GeneID", "Classification.Localization", "Genes.Essential", "Genes.GeneID" ]
2,491
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
Among the genes with nucleic acid metabolism defects, how many of them can be found in the vacuole?
SELECT COUNT(T1.GeneID) FROM Genes AS T1 INNER JOIN Classification AS T2 ON T1.GeneID = T2.GeneID WHERE T2.Localization = 'vacuole' AND T1.Phenotype = 'Nucleic acid metabolism defects'
[ "Classification.GeneID", "Classification.Localization", "Genes.GeneID", "Genes.Phenotype" ]
2,492
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
Please list the location of the genes that have the most chromosomes.
SELECT T2.Localization FROM Genes AS T1 INNER JOIN Classification AS T2 ON T1.GeneID = T2.GeneID ORDER BY T1.Chromosome DESC LIMIT 1
[ "Classification.GeneID", "Classification.Localization", "Genes.Chromosome", "Genes.GeneID" ]
2,493
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
Among the pairs of genes that are both located in the nucleus, what is the highest expression correlation score?
SELECT T2.Expression_Corr FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 INNER JOIN Genes AS T3 ON T3.GeneID = T2.GeneID2 WHERE T1.Localization = 'nucleus' AND T3.Localization = 'nucleus' ORDER BY T2.Expression_Corr DESC LIMIT 1
[ "Genes.GeneID", "Genes.Localization", "Interactions.Expression_Corr", "Interactions.GeneID1", "Interactions.GeneID2" ]
2,494
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
What are the functions of the pair of genes that have the lowest expression correlation score?a
SELECT T1.Function FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 ORDER BY T2.Expression_Corr ASC LIMIT 1
[ "Genes.Function", "Genes.GeneID", "Interactions.Expression_Corr", "Interactions.GeneID1" ]
2,495
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
Among the pairs of genes that are not from the class of motorproteins, how many of them are negatively correlated?
SELECT COUNT(T1.GeneID) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T2.Expression_Corr < 0 AND T1.Class = 'Motorproteins'
If Expression_Corr < 0, it means the negatively correlated
[ "Genes.Class", "Genes.GeneID", "Interactions.Expression_Corr", "Interactions.GeneID1" ]
2,496
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
For the pairs of genes with one having 8 chromosomes and the other having 6 chromosomes, what is the highest expression correlation score?
SELECT T2.Expression_Corr FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Chromosome = 6 OR T1.Chromosome = 8 ORDER BY T2.Expression_Corr DESC LIMIT 1
[ "Genes.Chromosome", "Genes.GeneID", "Interactions.Expression_Corr", "Interactions.GeneID1" ]
2,497
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
Please list the motif of the genes that are located in the cytoplasm and have 7 chromosomes.
SELECT T2.GeneID1, T2.GeneID2 FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Localization = 'cytoplasm' AND T1.Chromosome = 7
[ "Genes.Chromosome", "Genes.GeneID", "Genes.Localization", "Interactions.GeneID1", "Interactions.GeneID2" ]
2,498
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
For the non-essential genes whose functions are transcription, how many of them are not located in the cytoplasm?
SELECT COUNT(T1.GeneID) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Localization != 'cytoplasm' AND T1.Function = 'TRANSCRIPTION' AND T1.Essential = 'NON-Essential'
[ "Genes.Essential", "Genes.Function", "Genes.GeneID", "Genes.Localization", "Interactions.GeneID1" ]
2,499
genes
CREATE TABLE Classification ( GeneID TEXT not null primary key, Localization TEXT not null ); CREATE TABLE Genes ( GeneID TEXT not null, Essential TEXT not null, Class TEXT not null, Complex TEXT null, Phenotype TEXT not null, Motif TEXT ...
How many pairs of positively correlated genes are both non-essential?
SELECT COUNT(T2.GeneID2) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T2.Expression_Corr > 0 AND T1.Essential = 'Non-Essential'
If Expression_Corr > 0, it means the expression correlation is positive
[ "Genes.Essential", "Genes.GeneID", "Interactions.Expression_Corr", "Interactions.GeneID1", "Interactions.GeneID2" ]