db_id
stringclasses
69 values
schema
stringclasses
69 values
m_schema
stringclasses
69 values
question
stringlengths
24
325
sql
stringlengths
23
804
evidence
stringlengths
0
673
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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))
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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";
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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;
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'))
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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')
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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))
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)))
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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";
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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))
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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%'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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%'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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"
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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'
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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)
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 superstore 【Schema】 # Table: main.central_superstore [ (Row ID:INTEGER, Primary Key, Examples: [1, 2, 3]), (Order ID:TEXT, Examples: [CA-2011-103800, CA-2011-112326, CA-2011-105417]), (Order Date:DATE, Examples: [2013-01-03]), (Ship Date:DATE, Examples: [2013-01-07]), (Ship Mode:TEXT, Examples: [Standard Class,...
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
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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 = '...
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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'
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...
【DB_ID】 shooting 【Schema】 # Table: main.incidents [ (case_number:TEXT, Primary Key, Examples: [031347-2015, 072458-2016, 089985-2016]), (date:DATE), (location:TEXT, Examples: [7400 Bonnie View Road]), (subject_statuses:TEXT, Examples: [Deceased, Shoot and Miss, Injured]), (subject_weapon:TEXT, Examples: [Vehicle, Shotg...
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%
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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'
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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'
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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'
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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
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 ...
【DB_ID】 genes 【Schema】 # Table: main.Classification [ (GeneID:TEXT, Primary Key, Examples: [G234064, G234065, G234070]), (Localization:TEXT, Examples: [cytoplasm, cytoskeleton, nucleus]) ] # Table: main.Genes [ (GeneID:TEXT, Examples: [G234064, G234065, G234070]), (Essential:TEXT, Examples: [Essential, Non-Essential, ?...
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