context
stringlengths
11
9.12k
question
stringlengths
0
1.06k
SQL
stringlengths
2
4.44k
source
stringclasses
28 values
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
Please list any three orders that caused a loss to the company.
SELECT `Order ID` FROM central_superstore WHERE Profit < 0 LIMIT 3
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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
bird
CREATE TABLE superstore (Customer ID text, Customer Name text, Segment text, Country text, City text, State text, Postal Code integer, Region text, Product ID text, Product Name text, Category text, Sub-Category text, Region text, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real, Row ID integer, Order ID text, Order Date date, Ship Date date, Ship Mode text, Customer ID text, Region text, Product ID text, Sales real, Quantity integer, Discount real, Profit real)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
How many instances were found in June 2015?
SELECT COUNT(case_number) FROM incidents WHERE date BETWEEN '2015-06-01' AND '2015-06-30'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
How many more black female victims than white female victims were discovered?
SELECT SUM(race = 'B') - SUM(race = 'W') FROM subjects WHERE gender = 'F'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE shooting (case_number text, date date, location text, subject_statuses text, subject_weapon text, subjects text, subject_count integer, officers text, case_number text, race text, gender text, last_name text, first_name text, full_name text, case_number text, race text, gender text, last_name text, first_name text, full_name text)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
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'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
If a pair of genes is positively correlated, what is the possibility of it being composed of two genes both with over 10 chromosomes?
SELECT CAST(SUM(IIF(T1.Chromosome > 10 AND T3.Chromosome > 10, 1, 0)) AS REAL) * 100 / COUNT(T1.GeneID) 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 T2.Expression_Corr > 0
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
For the pairs of genes both from the class ATPases, what is the average expression correlation score?
SELECT AVG(T2.Expression_Corr) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Class = 'ATPases'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
Lists all genes by identifier number located in the cytoplasm and whose function is metabolism.
SELECT DISTINCT GeneID FROM Genes WHERE Localization = 'cytoplasm' AND Function = 'METABOLISM'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
How many different genes do we have if we add those located in the plasma and in the nucleus?
SELECT COUNT(GeneID) FROM Classification WHERE Localization IN ('plasma', 'nucleus')
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
What kind of expression correlation occurs in physical type interacting gene pairs and what percentage of these are negatively correlated?
SELECT Expression_Corr FROM Interactions WHERE Type = 'Physical' UNION ALL SELECT CAST(SUM(Expression_Corr < 0) AS REAL) * 100 / COUNT(*) FROM Interactions WHERE Type = 'Physical'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
What percentage of genes located in the cytoskeleton are of unknown class? And of these, how many are not conditional phenotypes?
SELECT SUM(Localization = 'cytoskeleton' AND Phenotype = 'Conditional phenotypes') , CAST(SUM(Localization = 'cytoskeleton') AS REAL) * 100 / COUNT(GeneID) FROM Genes;
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
What type of interactions occurs in genes whose function is cellular transport and transport medicine and are classified as non-essential?
SELECT T2.Type FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Function = 'TRANSCRIPTION' AND T1.Essential = 'Non-Essential'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
List all genes whose interaction is with genes located in the nucleus in which it is positively correlated.
SELECT T1.GeneID FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T2.Expression_Corr > 0 AND T1.Localization = 'nucleus'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
Taking all the essential genes of the transcription factors class located in the nucleus as a reference, how many of them carry out a genetic-type interaction with another gene? List them.
SELECT T2.GeneID1 FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Localization = 'nucleus' AND T1.Class = 'Transcription factors' AND T1.Essential = 'Essential' AND T2.Expression_Corr != 0
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
Of all the nonessential genes that are not of the motorprotein class and whose phenotype is cell cycle defects, how many do not have a physical type of interaction?
SELECT COUNT(T1.GeneID) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T2.Type != 'Physical' AND T1.Phenotype = 'Cell cycle defects' AND T1.Class != 'Motorproteins' AND T1.Essential = 'Non-Essential'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
Of the genes whose phenotype and motif are nucleic acid metabolism defects, PS00107, what percentage perform positive interaction with another gene?
SELECT CAST(SUM(IIF(T2.Expression_Corr > 0, 1, 0)) AS REAL) * 100 / COUNT(T2.GeneID1) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T1.Phenotype = 'Nucleic acid metabolism defects' AND T1.Motif = 'PS00107'
bird
CREATE TABLE genes (GeneID text, Localization text, GeneID text, Essential text, Class text, Complex text, Phenotype text, Motif text, Chromosome integer, Function text, Localization text, GeneID1 text, GeneID2 text, Type text, Expression_Corr real)
Which negatively correlated, genetically interacting genes are non-essential? What percentage do they represent with respect to those that are essential?
SELECT CAST(COUNT(T1.GeneID) AS REAL) * 100 / ( SELECT COUNT(T1.GeneID) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T2.Expression_Corr < 0 ) FROM Genes AS T1 INNER JOIN Interactions AS T2 ON T1.GeneID = T2.GeneID1 WHERE T2.Expression_Corr < 0 AND T1.Essential = 'Non-Essential'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
How many apps were last updated in January of 2018? Please write one translated review with positive sentiment for each app, if there's any.
SELECT DISTINCT Translated_Review FROM user_reviews WHERE App IN ( SELECT App FROM playstore WHERE `Last Updated` BETWEEN 'January 1, 2018' AND 'January 31, 2018' ) AND Sentiment = 'Positive'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
How many users mildly likes the 7 Minute Workout app and when was it last updated?
SELECT COUNT(T2.Sentiment_Polarity), T1."Last Updated" FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.App = '7 Minute Workout' AND T2.Sentiment_Polarity BETWEEN 0 AND 0.5
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
How many users holds neutral attitude towards the HTC Weather app? Indicate the app's rating on the Google Play Store.
SELECT COUNT(T1.Rating), T1.Rating FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.App = 'HTC Weather' AND T2.Sentiment = 'Neutral'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
What is the name and category of the app with the highest amount of -1 sentiment polarity score?
SELECT DISTINCT T1.App, T1.Category FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T2.Sentiment_Polarity = '-1.0'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
What is the average sentiment polarity score of the Cooking Fever app? Indicate the age group that the app is targeted at.
SELECT AVG(T2.Sentiment_Polarity), T1."Content Rating" FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.App = 'Cooking Fever'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
What is the lowest sentiment polarity score of the Basketball Stars app for people who dislikes the app pretty much and how many downloads does it have?
SELECT MIN(T2.Sentiment_Polarity), T1.Installs FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.App = 'Basketball Stars'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
For the Akinator app, how many reviews have sentiment subjectivity of no more than 0.5 and what is its current version?
SELECT COUNT(T2.Sentiment_Subjectivity), T1."Current Ver" FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.App = 'Akinator' AND T2.Sentiment_Subjectivity < 0.5
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
How many apps have rating of 5?
SELECT COUNT(App) FROM playstore WHERE Rating = 5
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
What are the top 5 installed free apps?
SELECT App FROM playstore WHERE Price = 0 ORDER BY CAST(REPLACE(REPLACE(Installs, ',', ''), '+', '') AS INTEGER) DESC LIMIT 5
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
Name the top 10 most reviewed apps.
SELECT DISTINCT App FROM playstore ORDER BY Reviews DESC LIMIT 10
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
How many of the users hold neutral attitude on "10 Best Foods for You" app and what category is this app?
SELECT COUNT(T2.App), T1.Category FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.App = '10 Best Foods for You' AND T2.Sentiment = 'Neutral'
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
What are the apps that users pretty like this app and how many installs amount of these apps?
SELECT DISTINCT T1.App, T1.Installs FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T2.Sentiment_Polarity > 0
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
List apps whose rating is 3.9 and state the translated review of each app.
SELECT T1.App, T2.Translated_Review FROM playstore AS T1 INNER JOIN user_reviews AS T2 ON T1.App = T2.App WHERE T1.Rating = 3.9
bird
CREATE TABLE app_store (App text, Category text, Rating real, Reviews integer, Size text, Installs text, Type text, Price text, Content Rating text, Genres text, App text, Translated_Review text, Sentiment text, Sentiment_Polarity text, Sentiment_Subjectivity text)
How many apps that are only compatible with Android ver 8.0 and above? List down the users' sentiment of these apps.
SELECT DISTINCT Sentiment FROM user_reviews WHERE App IN ( SELECT App FROM playstore WHERE `Android Ver` = '8.0 and up' )
bird