db_id
stringclasses 69
values | question
stringlengths 24
325
| evidence
stringlengths 0
673
| SQL
stringlengths 23
804
| question_id
int64 0
9.43k
| difficulty
stringclasses 1
value |
---|---|---|---|---|---|
car_retails
|
How many customers with a canceled shipment have a credit limit greater than 115,000?
|
cancelled shipment refers to status = 'cancelled'; creditLimit > 115000;
|
SELECT COUNT(T1.customerNumber) FROM customers AS T1 INNER JOIN orders AS T2 ON T1.customerNumber = T2.customerNumber WHERE T2.status = 'Cancelled' AND T1.creditLimit > 115000
| 1,600 | |
car_retails
|
On what date did the customer with the lowest credit limit serviced by sales representative Barry Jones make payments for his/her orders?
|
SELECT T3.paymentDate FROM employees AS T1 INNER JOIN customers AS T2 ON T1.employeeNumber = T2.salesRepEmployeeNumber INNER JOIN payments AS T3 ON T2.customerNumber = T3.customerNumber WHERE T1.firstName = 'Barry' AND T1.lastName = 'Jones' AND T1.jobTitle = 'Sales Rep' ORDER BY T2.creditLimit ASC LIMIT 1
| 1,601 | ||
car_retails
|
To whom does the employee have to inform that is the sales representative of the French customer?
|
inform refers to reportsTo; 'reportsTO' is the leader of the 'employeeNumber'; France is a country; country = 'France';
|
SELECT T1.reportsTo FROM employees AS T1 INNER JOIN customers AS T2 ON T1.employeeNumber = T2.salesRepEmployeeNumber WHERE T2.country = 'France'
| 1,602 | |
car_retails
|
What is the full address of the customer who commented that DHL be used for the order that was shipped on April 4, 2005?
|
full address = addressLine1+addressLine2; shippedDate = '2005-04-04';
|
SELECT T1.addressLine1, T1.addressLine2 FROM customers AS T1 INNER JOIN orders AS T2 ON T1.customerNumber = T2.customerNumber WHERE T2.shippedDate = '2005-04-04' AND T2.status = 'Shipped'
| 1,603 | |
car_retails
|
What is the full address of the office where the employee who is a sales representative for the customer whose business is located in the city of New York works?
|
full address = addressLine1 + addressLine2; NYC is a shortname of New York City.
|
SELECT T2.addressLine1, T2.addressLine2 FROM employees AS T1 INNER JOIN customers AS T2 ON T1.employeeNumber = T2.salesRepEmployeeNumber INNER JOIN offices AS T3 ON T1.officeCode = T3.officeCode WHERE T2.city = 'NYC' AND T1.jobTitle = 'Sales Rep'
| 1,604 | |
car_retails
|
What is the full address of the office where 4 people work and one of them is Sales Representation?
|
full address = addressLine1+addressLine2; Sales Manager is a job title;
|
SELECT T1.addressLine1, T1.addressLine2 FROM customers AS T1 INNER JOIN employees AS T2 ON T1.salesRepEmployeeNumber = T2.employeeNumber WHERE T2.jobTitle = 'Sales Rep'
| 1,605 | |
car_retails
|
What profit can the seller Carousel DieCast Legends make from the sale of the product described as "The perfect holiday or anniversary gift for executives"?
|
seller and product vendor are synonyms; Carousel DieCast Legends is a product vendor; profit = SUM(SUBTRACT(msrp, buyPrice));
|
SELECT SUM(T2.MSRP - T2.buyPrice) FROM productlines AS T1 INNER JOIN products AS T2 ON T1.productLine = T2.productLine WHERE T2.productVendor = 'Carousel DieCast Legends' AND T1.textDescription LIKE '%perfect holiday or anniversary gift for executives%'
| 1,606 | |
car_retails
|
Of the clients whose businesses are located in the city of Boston, calculate which of them has a higher average amount of payment.
|
average amount payment = AVG(amount);
|
SELECT T1.customerNumber FROM customers AS T1 INNER JOIN payments AS T2 ON T1.customerNumber = T2.customerNumber WHERE T1.city = 'Boston' GROUP BY T1.customerNumber ORDER BY SUM(T2.amount) / COUNT(T2.paymentDate) DESC LIMIT 1
| 1,607 | |
car_retails
|
Calculate the total quantity ordered for 18th Century Vintage Horse Carriage and the average price.
|
18th Century Vintage Horse Carriage is a product name; average price = AVG(priceEach);
|
SELECT SUM(T2.quantityOrdered) , SUM(T2.quantityOrdered * T2.priceEach) / SUM(T2.quantityOrdered) FROM products AS T1 INNER JOIN orderdetails AS T2 ON T1.productCode = T2.productCode WHERE T1.productName = '18th Century Vintage Horse Carriage'
| 1,608 | |
car_retails
|
How many kinds of products did order No. 10252 contain?
|
Products refer to productCode;
|
SELECT COUNT(t.productCode) FROM orderdetails t WHERE t.orderNumber = '10252'
| 1,609 | |
car_retails
|
Who is the sales representative that made the order which was sent to 25 Maiden Lane, Floor No. 4?
|
Sales representative is an employee;
|
SELECT T2.firstName, T2.lastName FROM customers AS T1 INNER JOIN employees AS T2 ON T1.salesRepEmployeeNumber = T2.employeeNumber WHERE T1.addressLine1 = '25 Maiden Lane' AND T1.addressLine2 = 'Floor No. 4'
| 1,610 | |
car_retails
|
Where's Foon Yue Tseng's office located at? Give the detailed address.
|
Detailed address comprises addressLine1 and addressLine2;
|
SELECT T1.addressLine1, T1.addressLine2 FROM offices AS T1 INNER JOIN employees AS T2 ON T1.officeCode = T2.officeCode WHERE T2.firstName = 'Foon Yue' AND T2.lastName = 'Tseng'
| 1,611 | |
car_retails
|
Compared with the orders happened on 2005-04-08 and two days later, which day's order had a higher value?
|
2005-04-08 and two days later refer to orderDate = '2005-04-08' and orderDate = '2005-04-10'; order with a higher value refers to MAX(Total price) = MULTIPLY(quantityOrdered, priceEach);
|
SELECT T2.orderDate FROM orderdetails AS T1 INNER JOIN orders AS T2 ON T1.orderNumber = T2.orderNumber WHERE STRFTIME('%Y-%m-%d', T2.orderDate) = '2005-04-08' OR STRFTIME('%Y-%m-%d', T2.orderDate) = '2005-04-10' ORDER BY T1.quantityOrdered * T1.priceEach DESC LIMIT 1
| 1,612 | |
car_retails
|
How many products with the highest expected profits were sold in total?
|
Products refer to productCode; Expected profits = SUBTRACT(MSRP, buyPrice);
|
SELECT SUM(t2.quantityOrdered) FROM orderdetails AS t2 INNER JOIN ( SELECT t1.productCode FROM products AS t1 ORDER BY t1.MSRP - t1.buyPrice DESC LIMIT 1 ) AS t3 ON t2.productCode = t3.productCode
| 1,613 | |
car_retails
|
How much did Petit Auto pay on 2004-08-09?
|
Petit Auto is name of customer; paymentDate = '2004-08-09';
|
SELECT t1.amount FROM payments AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t2.customerName = 'Petit Auto' AND t1.paymentDate = '2004-08-09'
| 1,614 | |
car_retails
|
What was the contact name for the check "NR157385"?
|
Contact name refers to customerName;
|
SELECT t2.contactFirstName, t2.contactLastName FROM payments AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t1.checkNumber = 'NR157385'
| 1,615 | |
car_retails
|
Which customer made the order No. 10160? Give the contact name.
|
SELECT t2.contactFirstName, t2.contactLastName FROM orders AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t1.orderNumber = '10160'
| 1,616 | ||
car_retails
|
Where was the order No. 10383 shipped to? Show me the address.
|
Address comprises addressLine1 and addressLine2;
|
SELECT t2.addressLine1, t2.addressLine2 FROM orders AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t1.orderNumber = '10383'
| 1,617 | |
car_retails
|
For the productline where the product No.S18_2949 was produced, what's the text description for that product line?
|
SELECT t1.textDescription FROM productlines AS t1 INNER JOIN products AS t2 ON t1.productLine = t2.productLine WHERE t2.productCode = 'S18_2949'
| 1,618 | ||
car_retails
|
If Dragon Souveniers, Ltd. aren't satisfied with their order and want to send a complain e-mail, which e-mail address should they send to?
|
E-mail address belongs to employee; customerName = 'Dragon Souveniers, Ltd.';
|
SELECT t2.email FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t1.customerName = 'Dragon Souveniers, Ltd.'
| 1,619 | |
car_retails
|
How many French customers does Gerard Hernandez take care of?
|
Gerakd Hermandez is an employee; French customer refers to customer from France where country = 'France'
|
SELECT COUNT(t1.customerNumber) FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t1.country = 'France' AND t2.firstName = 'Gerard' AND t2.lastName = 'Hernandez'
| 1,620 | |
car_retails
|
What was the latest order that customer No.114 made? Give the name of the product.
|
The latest refers to the most recent orderDate;
|
SELECT t3.productName FROM orderdetails AS t1 INNER JOIN orders AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN products AS t3 ON t1.productCode = t3.productCode WHERE t2.customerNumber = '114' ORDER BY t2.orderDate DESC LIMIT 1
| 1,621 | |
car_retails
|
For the product No. S18_3482 in the Order No.10108, how much discount did the customer have?
|
DIVIDE(SUBTRACT(MSRP, priceEach)), MSRP); product No. S18_3482 refers to productCode = 'S18_3482'
|
SELECT (t1.MSRP - t2.priceEach) / t1.MSRP FROM products AS t1 INNER JOIN orderdetails AS t2 ON t1.productCode = t2.productCode WHERE t1.productCode = 'S18_3482' AND t2.orderNumber = '10108'
| 1,622 | |
car_retails
|
To whom does Steve Patterson report? Please give his or her full name.
|
reportsTO' is the leader of the 'employeeNumber';
|
SELECT t2.firstName, t2.lastName FROM employees AS t1 INNER JOIN employees AS t2 ON t2.employeeNumber = t1.reportsTo WHERE t1.firstName = 'Steve' AND t1.lastName = 'Patterson'
| 1,623 | |
car_retails
|
How do I contact the President of the company?
|
President refers to the jobTitle;
|
SELECT t.email FROM employees t WHERE t.jobTitle = 'President'
| 1,624 | |
car_retails
|
Who is the sales representitive of Muscle Machine Inc? Please give the employee's full name.
|
Sales representative refers to jobTitle = 'Sales Rep'; Muscle Machine Inc is name of customer;
|
SELECT t2.firstName, t2.lastName FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t1.customerName = 'Muscle Machine Inc'
| 1,625 | |
car_retails
|
If I'm from the Muscle Machine Inc, to which e-mail adress should I write a letter if I want to reach the superior of my sales representitive?
|
Muscle Machine Inc is name of customer; superior refers to 'reportsTO', who is the leader of the 'employeeNumber'
|
SELECT t2.email FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t1.customerName = 'Muscle Machine Inc'
| 1,626 | |
car_retails
|
Please list all the customers that have Steve Patterson as their sales representitive.
|
Steve Patterson is an employee;
|
SELECT t1.customerName FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t2.firstName = 'Steve' AND t2.lastName = 'Patterson'
| 1,627 | |
car_retails
|
How many customers have an employee who reports to William Patterson as their sales representitive?
|
reportsTO' is the leader of the 'employeeNumber';
|
SELECT COUNT(t1.customerNumber) FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t2.firstName = 'William' AND t2.lastName = 'Patterson'
| 1,628 | |
car_retails
|
Please list the phone numbers of the top 3 customers that have the highest credit limit and have Leslie Jennings as their sales representitive.
|
SELECT t1.phone FROM customers AS t1 INNER JOIN employees AS t2 ON t1.salesRepEmployeeNumber = t2.employeeNumber WHERE t2.firstName = 'Leslie' AND t2.lastName = 'Jennings' ORDER BY t1.creditLimit DESC LIMIT 3
| 1,629 | ||
car_retails
|
How many sales representitives are based in the offices in the USA?
|
Sales representative refers to jobTitle = 'Sales Rep'; country = 'USA';
|
SELECT COUNT(t1.employeeNumber) FROM employees AS t1 INNER JOIN offices AS t2 ON t1.officeCode = t2.officeCode WHERE t2.country = 'USA' AND t1.jobTitle = 'Sales Rep'
| 1,630 | |
car_retails
|
Where can I find the office of the President of the company?
|
Where can I find the office refers to address, comprising of addressLine1 and addressLine2; President is a jobTitle
|
SELECT t2.addressLine1, t2.addressLine2 FROM employees AS t1 INNER JOIN offices AS t2 ON t1.officeCode = t2.officeCode WHERE t1.jobTitle = 'President'
| 1,631 | |
car_retails
|
What's the postal code of the office the VP Sales is at?
|
VP Sales refers to jobTitle
|
SELECT t2.postalCode FROM employees AS t1 INNER JOIN offices AS t2 ON t1.officeCode = t2.officeCode WHERE t1.jobTitle = 'VP Sales'
| 1,632 | |
car_retails
|
What is the total price of the order made by Cruz & Sons Co. on 2003/3/3?
|
SUM(MULTIPLY(quantityOrdered, priceEach)) where orderDate = '2003-03-03'; customerName = 'Cruz & Sons Co.'
|
SELECT SUM(t1.priceEach * t1.quantityOrdered) FROM orderdetails AS t1 INNER JOIN orders AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN customers AS t3 ON t2.customerNumber = t3.customerNumber WHERE t3.customerName = 'Cruz & Sons Co.' AND t2.orderDate = '2003-03-03'
| 1,633 | |
car_retails
|
Which product did Cruz & Sons Co. order on 2003/3/3?
|
Cruz & Sons Co. is name of customer; 2003/3/3 refers to orderDate;
|
SELECT t4.productName FROM orderdetails AS t1 INNER JOIN orders AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN customers AS t3 ON t2.customerNumber = t3.customerNumber INNER JOIN products AS t4 ON t1.productCode = t4.productCode WHERE t3.customerName = 'Cruz & Sons Co.' AND t2.orderDate = '2003-03-03'
| 1,634 | |
car_retails
|
Which product did Cruz & Sons Co. ask for the biggest amount in a single order?
|
Cruz & Sons Co. is name of customer; the biggest amount refers to MAX(quantityOrdered).
|
SELECT t4.productName FROM orderdetails AS t1 INNER JOIN orders AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN customers AS t3 ON t2.customerNumber = t3.customerNumber INNER JOIN products AS t4 ON t1.productCode = t4.productCode WHERE t3.customerName = 'Cruz & Sons Co.' ORDER BY t1.priceEach * t1.quantityOrdered DESC LIMIT 1
| 1,635 | |
car_retails
|
When were the products ordered by Cruz & Sons Co. on 2003-03-03 shipped?
|
Cruz & Sons Co. is name of customer; ordered on 2003-03-03 refers to orderDate;
|
SELECT t1.shippedDate FROM orders AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t2.customerName = 'Cruz & Sons Co.' AND t1.orderDate = '2003-03-03'
| 1,636 | |
car_retails
|
What is the amount of customers of 1957 Chevy Pickup by customers in a month?
|
SELECT COUNT(T2.customerNumber) FROM orderdetails AS T1 INNER JOIN orders AS T2 ON T1.orderNumber = T2.orderNumber WHERE T1.productCode IN ( SELECT productCode FROM products WHERE productName = '1957 Chevy Pickup' )
| 1,637 | ||
car_retails
|
Name the product from the 'Classic Cars' production line that has the greatest expected profit.
|
The greatest expected profit refers to MAX(SUBTRACT(MSRP, buyPrice);
|
SELECT t.productName, t.MSRP - t.buyPrice FROM products AS t WHERE t.productLine = 'Classic Cars' ORDER BY t.MSRP - t.buyPrice DESC LIMIT 1
| 1,638 | |
car_retails
|
List all the name of customers who have orders that are still processing.
|
Still processing refers to status = 'In Process';
|
SELECT t2.customerName FROM orders AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t1.status = 'In Process'
| 1,639 | |
car_retails
|
Among all orders shipped, calculate the percentage of orders shipped at least 3 days before the required date.
|
Orders shipped refer to status = 'Shipped'; at least 3 days before the required date refers to SUBTRACT(shippedDate, requiredDate)>3; DIVIDE(COUNT(orderNumber where SUBTRACT(shippedDate, requiredDate)>3), (COUNT(orderNumber) as percentage;
|
SELECT COUNT(CASE WHEN JULIANDAY(t1.shippeddate) - JULIANDAY(t1.requireddate) > 3 THEN T1.customerNumber ELSE NULL END) FROM orders AS T1 INNER JOIN orderdetails AS T2 ON T1.orderNumber = T2.orderNumber WHERE T1.status = 'Shipped'
| 1,640 | |
car_retails
|
Find the customer who made the highest payment in 2005.
|
The highest payment refers to max(amount); 2005 refers to year(paymentDate);
|
SELECT t2.customerName FROM payments AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE STRFTIME('%Y', t1.paymentDate) = '2005' GROUP BY t2.customerNumber, t2.customerName ORDER BY SUM(t1.amount) DESC LIMIT 1
| 1,641 | |
car_retails
|
Which is the most ordered quantity product? What is its expected profit margin per piece?
|
The most ordered quantity product refers to productName where Max(quantityOrdered); SUBTRACT(MSRP, buyPrice);
|
SELECT productName, MSRP - buyPrice FROM products WHERE productCode = ( SELECT productCode FROM orderdetails ORDER BY quantityOrdered DESC LIMIT 1 )
| 1,642 | |
car_retails
|
For the order has the most product ordered, name the customer who placed the order.
|
The largest order in terms of total price refers to MAX(SUM(MULTIPLY(quantityOrdered, priceEach)).
|
SELECT T2.firstName, T2.lastName FROM offices AS T1 INNER JOIN employees AS T2 ON T1.officeCode = T2.officeCode WHERE T2.employeeNumber = ( SELECT MAX(employeeNumber) FROM employees )
| 1,643 | |
car_retails
|
List all customer names with orders that are disputed.
|
Orders that are disputed refer to status = 'Disputed'; the sales representative means employees; names refers to firstName, lastName.
|
SELECT t3.firstName, t3.lastName FROM orders AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber INNER JOIN employees AS t3 ON t2.salesRepEmployeeNumber = t3.employeeNumber WHERE t1.status = 'Disputed'
| 1,644 | |
car_retails
|
What is the percentage of employees are in Paris office?
|
DIVIDE(COUNT(employeeNumber) when city = 'Paris'), (COUNT(employeeNumber)) as percentage;
|
SELECT CAST(COUNT(CASE WHEN t1.city = 'Paris' THEN t2.employeeNumber ELSE NULL END) AS REAL) * 100 / COUNT(t2.employeeNumber) FROM offices AS t1 INNER JOIN employees AS t2 ON t1.officeCode = t2.officeCode
| 1,645 | |
car_retails
|
Name the Sales Manager of Europe, Middle East, and Africa region. In which office does he/she report to?
|
Sales Manager refers to jobTitle; Europe, Middle East, and Africa region refers to territory = 'EMEA';
|
SELECT t2.firstName, t2.lastName FROM offices AS t1 INNER JOIN employees AS t2 ON t1.officeCode = t2.officeCode WHERE t2.jobTitle = 'Sale Manager (EMEA)'
| 1,646 | |
car_retails
|
List the name of employees in Japan office and who are they reporting to.
|
Japan is the name of the country; 'reportsTO' is the leader of the 'employeeNumber';
|
SELECT t2.firstName, t2.lastName, t2.reportsTo FROM offices AS t1 INNER JOIN employees AS t2 ON t1.officeCode = t2.officeCode WHERE t1.country = 'Japan'
| 1,647 | |
car_retails
|
Which customer ordered 1939 'Chevrolet Deluxe Coupe' at the highest price?
|
1939 'Chevrolet Deluxe Coupe' refers to productName; the highest price refers to MAX(priceEach)
|
SELECT t4.customerName FROM products AS t1 INNER JOIN orderdetails AS t2 ON t1.productCode = t2.productCode INNER JOIN orders AS t3 ON t2.orderNumber = t3.orderNumber INNER JOIN customers AS t4 ON t3.customerNumber = t4.customerNumber WHERE t1.productName = '1939 Chevrolet Deluxe Coupe' ORDER BY t2.priceEach DESC LIMIT 1
| 1,648 | |
car_retails
|
What is the percentage of the payment amount in 2004 was made by Atelier graphique?
|
DIVIDE(SUM(amount) where customerName = 'Atelier graphique'), (SUM(amount)) as percentage where year(paymentDate) = 2004;
|
SELECT SUM(CASE WHEN t1.customerName = 'Atelier graphique' THEN t2.amount ELSE 0 END) * 100 / SUM(t2.amount) FROM customers AS t1 INNER JOIN payments AS t2 ON t1.customerNumber = t2.customerNumber WHERE STRFTIME('%Y', t2.paymentDate) = '2004'
| 1,649 | |
car_retails
|
Calculate the actual profit for order number 10100.
|
SUM(MULTIPLY(quantityOrdered (SUBTRACT (priceEach, buyPrice));
|
SELECT SUM((t1.priceEach - t2.buyPrice) * t1.quantityOrdered) FROM orderdetails AS t1 INNER JOIN products AS t2 ON t1.productCode = t2.productCode WHERE t1.orderNumber = '10100'
| 1,650 | |
car_retails
|
How much did customer 103 pay in total?
|
Pay in total refers to SUM(amount);
|
SELECT SUM(t.amount) FROM payments t WHERE t.customerNumber = '103'
| 1,651 | |
car_retails
|
What is the total price of the order 10100?
|
SUM(MULTIPLY(quantityOrdered, priceEach)
|
SELECT SUM(t.priceEach * t.quantityOrdered) FROM orderdetails t WHERE t.orderNumber = '10100'
| 1,652 | |
car_retails
|
Please list the top three product names with the highest unit price.
|
The highest unit price refers to MAX(priceEach)
|
SELECT t1.productName FROM products AS t1 INNER JOIN orderdetails AS t2 ON t1.productCode = t2.productCode ORDER BY t2.priceEach DESC LIMIT 3
| 1,653 | |
car_retails
|
Among the customers of empolyee 1370, who has the highest credit limit?Please list the full name of the contact person.
|
Employee 1370 refers to employeeNumber = '1370';
|
SELECT t2.contactFirstName, t2.contactLastName FROM employees AS t1 INNER JOIN customers AS t2 ON t1.employeeNumber = t2.salesRepEmployeeNumber WHERE t1.employeeNumber = '1370' ORDER BY t2.creditLimit DESC LIMIT 1
| 1,654 | |
car_retails
|
How many 2003 Harley-Davidson Eagle Drag Bikes were ordered?
|
2003 Harley-Davidson Eagle Drag Bikes refers to productName; how many ordered refers to COUNT(quantityOrdered);
|
SELECT SUM(t2.quantityOrdered) FROM products AS t1 INNER JOIN orderdetails AS t2 ON t1.productCode = t2.productCode WHERE t1.productName = '2003 Harley-Davidson Eagle Drag Bike'
| 1,655 | |
car_retails
|
When was the product with the highest unit price shipped?
|
The highest unit price refers to MAX(priceEach); when shipped refers to shippedDate;
|
SELECT t1.shippedDate FROM orders AS t1 INNER JOIN orderdetails AS t2 ON t1.orderNumber = t2.orderNumber ORDER BY t2.priceEach DESC LIMIT 1
| 1,656 | |
car_retails
|
How many motorcycles have been ordered in 2004?
|
Motorcycles refer to productLine = 'motorcycles'; ordered in 2004 refers to year(orderDate) = 2004;
|
SELECT SUM(t2.quantityOrdered) FROM orders AS t1 INNER JOIN orderdetails AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN products AS t3 ON t2.productCode = t3.productCode WHERE t3.productLine = 'motorcycles' AND STRFTIME('%Y', t1.orderDate) = '2004'
| 1,657 | |
car_retails
|
Please list the order number of the customer whose credit card has a limit of 45300.
|
Credit card does not have a limit refers to creditLimit = 45300;
|
SELECT t1.orderNumber FROM orders AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t2.creditLimit = 45300
| 1,658 | |
car_retails
|
For Which order was the most profitable, please list the customer name of the order and the profit of the order.
|
Most profitable order can be computed as MAX(MULTIPLY(quantityOrdered, SUBTRACT(priceEach, buyPrice)).
|
SELECT t3.customerName, (t1.priceEach - t4.buyPrice) * t1.quantityOrdered FROM orderdetails AS t1 INNER JOIN orders AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN customers AS t3 ON t2.customerNumber = t3.customerNumber INNER JOIN products AS t4 ON t1.productCode = t4.productCode GROUP BY t3.customerName, t1.priceEach, t4.buyPrice, t1.quantityOrdered ORDER BY (t1.priceEach - t4.buyPrice) * t1.quantityOrdered DESC LIMIT 1
| 1,659 | |
car_retails
|
How many transactions payment made by customer that is lower than 10000. Group the result by year.
|
Transactions payment lower than 10000 refer to COUNT(amount) < 1000; by year refers to YEAR(paymentDate)
|
SELECT STRFTIME('%Y', t1.paymentDate), COUNT(t1.customerNumber) FROM payments AS t1 WHERE t1.amount < 10000 GROUP BY STRFTIME('%Y', t1.paymentDate)
| 1,660 | |
car_retails
|
List out 3 best seller products during year 2003 with their total quantity sold during 2003.
|
Best selling products refer to products with MAX(quantityOrdered); 2003 refers to year(orderDate) = 2003;
|
SELECT t3.productName, SUM(t2.quantityOrdered) FROM orders AS t1 INNER JOIN orderdetails AS t2 ON t1.orderNumber = t2.orderNumber INNER JOIN products AS t3 ON t2.productCode = t3.productCode WHERE STRFTIME('%Y', t1.orderDate) = '2003' GROUP BY t3.productName ORDER BY SUM(t2.quantityOrdered) DESC LIMIT 3
| 1,661 | |
car_retails
|
List out sale rep that has sold 1969 Harley Davidson Ultimate Chopper. List out their names and quantity sold throughout the year.
|
1969 Harley Davidson Ultimate Chopper refers to the name of the product; sale rep refers to employee; 2003 refers to year(orderDate) = 2003; quantity sold refers to quantityOrdered; their names refer to the name of customers;
|
SELECT t5.firstName, t5.lastName, SUM(t2.quantityOrdered) FROM products AS t1 INNER JOIN orderdetails AS t2 ON t1.productCode = t2.productCode INNER JOIN orders AS t3 ON t2.orderNumber = t3.orderNumber INNER JOIN customers AS t4 ON t3.customerNumber = t4.customerNumber INNER JOIN employees AS t5 ON t4.salesRepEmployeeNumber = t5.employeeNumber WHERE t1.productName = '1969 Harley Davidson Ultimate Chopper' GROUP BY t5.lastName, t5.firstName
| 1,662 | |
car_retails
|
Who are the sales representatives in New York City? List their full names.
|
New York City refers to city = 'NYC'; sales representative refers to jobTitle = 'Sales Rep';
|
SELECT t1.lastName, t1.firstName FROM employees AS t1 INNER JOIN offices AS t2 ON t1.officeCode = t2.officeCode WHERE t2.city = 'NYC' AND t1.jobTitle = 'Sales Rep'
| 1,663 | |
car_retails
|
Identify the customer and list down the country with the check number GG31455.
|
SELECT t2.customerName, t2.country FROM payments AS t1 INNER JOIN customers AS t2 ON t1.customerNumber = t2.customerNumber WHERE t1.checkNumber = 'GG31455'
| 1,664 | ||
car_retails
|
How many 2001 Ferrari Enzo were ordered?
|
2001 Ferrari Enzo refers to productName;
|
SELECT SUM(t1.orderNumber) FROM orderdetails AS t1 INNER JOIN products AS t2 ON t1.productCode = t2.productCode WHERE t2.productName = '2001 Ferrari Enzo'
| 1,665 | |
car_retails
|
Which 5 products has the lowest amount of orders? List the product names.
|
The lowest amount of orders refers to MIN(quantityOrdered);
|
SELECT t2.productName FROM orderdetails AS t1 INNER JOIN products AS t2 ON t1.productCode = t2.productCode GROUP BY t2.productName ORDER BY SUM(t1.quantityOrdered) ASC LIMIT 5
| 1,666 | |
car_retails
|
List down the customer names with a disputed order status.
|
SELECT t1.customerName FROM customers AS t1 INNER JOIN orders AS t2 ON t1.customerNumber = t2.customerNumber WHERE t2.status = 'Disputed'
| 1,667 | ||
car_retails
|
How many countries from the USA have an In Process order status?
|
country = 'USA'
|
SELECT COUNT(t2.orderNumber) FROM customers AS t1 INNER JOIN orders AS t2 ON t1.customerNumber = t2.customerNumber WHERE t2.status = 'On Hold' AND t1.country = 'USA'
| 1,668 | |
car_retails
|
Calculate the total price of shipped orders belonging to Land of Toys Inc. under the classic car line of products.
|
SUM(MULTIPLY(quantityOrdered, priceEach)) where productLine = 'Classic Cars'; status = 'Shipped'; customername = 'Land of Toys Inc';
|
SELECT SUM(t3.priceEach * t3.quantityOrdered) FROM customers AS t1 INNER JOIN orders AS t2 ON t1.customerNumber = t2.customerNumber INNER JOIN orderdetails AS t3 ON t2.orderNumber = t3.orderNumber INNER JOIN products AS t4 ON t3.productCode = t4.productCode WHERE t4.productLine = 'Classic Cars' AND t1.customerName = 'Land of Toys Inc.' AND t2.status = 'Shipped'
| 1,669 | |
restaurant
|
How many restaurants have not obtained a minimum of 3 in their reviews?
|
have not obtained a minimum of 3 in review refers to review < 3
|
SELECT COUNT(id_restaurant) FROM generalinfo WHERE review < 3
| 1,670 | |
restaurant
|
What types of food are served at the 4 top-reviewed restaurants?
|
top-reviewed refers to review = 4; type of food refers to food_type
|
SELECT food_type FROM generalinfo WHERE review = ( SELECT MAX(review) FROM generalinfo ) LIMIT 4
| 1,671 | |
restaurant
|
How many restaurants in the city of Richmond serve Mediterranean food?
|
Mediterranean food refers to food_type = 'mediterranean'
|
SELECT COUNT(id_restaurant) FROM generalinfo WHERE food_type = 'mediterranean' AND city = 'richmond'
| 1,672 | |
restaurant
|
List all the cities in Sonoma County.
|
SELECT city FROM geographic WHERE county = 'sonoma county'
| 1,673 | ||
restaurant
|
What counties are not in the Bay Area Region?
|
not in the Bay Area region refers to region ! = 'bay area'
|
SELECT DISTINCT county FROM geographic WHERE region != 'bay area'
| 1,674 | |
restaurant
|
List all cities in the Northern California Region.
|
SELECT city FROM geographic WHERE region = 'northern california'
| 1,675 | ||
restaurant
|
List by its ID number all restaurants on 11th Street in Oakland.
|
11th Street refers to street_name = '11th street'; Oakland refers to city = 'oakland'; ID number of restaurant refers to id_restaurant
|
SELECT id_restaurant FROM location WHERE city = 'oakland' AND street_name = '11th street'
| 1,676 | |
restaurant
|
How many restaurants can we find at number 871 on its street?
|
number 871 on its street refers to street_num = 871
|
SELECT COUNT(id_restaurant) FROM location WHERE street_num = 871
| 1,677 | |
restaurant
|
At what numbers on 9th Avenue of San Francisco there are restaurants?
|
9th Avenue refers to street_name = '9th avenue'; San Francisco refers to City = 'san francisco'
|
SELECT id_restaurant FROM location WHERE City = 'san francisco' AND street_name = '9th avenue'
| 1,678 | |
restaurant
|
What type of food is there in the restaurants on Adeline Street in Berkeley city?
|
Adeline Street refers to street_name = 'adeline st'; type of food refers to food_type
|
SELECT T1.food_type FROM generalinfo AS T1 INNER JOIN location AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T2.street_name = 'adeline st' AND T2.city = 'berkeley'
| 1,679 | |
restaurant
|
In which regions are there no African food restaurants?
|
no African food restaurants refers to food_type <> 'african'
|
SELECT DISTINCT T2.region FROM generalinfo AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T1.food_type != 'african'
| 1,680 | |
restaurant
|
In which counties are there A&W Root Beer Restaurants?
|
A&W Root Beer Restaurant refers to label = 'a & w root beer'
|
SELECT DISTINCT T2.county FROM generalinfo AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T1.label = 'a & w root beer'
| 1,681 | |
restaurant
|
Indicate street and number of the Adelitas Taqueria Restaurants.
|
street refers to street_name; number refers to street_num; Adelitas Taqueria Restaurant refers to label = 'adelitas taqueria'
|
SELECT T1.street_name, T1.street_num FROM location AS T1 INNER JOIN generalinfo AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T2.label = 'adelitas taqueria'
| 1,682 | |
restaurant
|
What type of food is served at the restaurant located at 3140, Alpine Road at San Mateo County?
|
3140 Alpine Road at San Mateo County refers to street_num = 3140 AND street_name = 'alpine rd' AND County = 'san mateo county'; type of food refers to food_type
|
SELECT T2.food_type FROM location AS T1 INNER JOIN generalinfo AS T2 ON T1.id_restaurant = T2.id_restaurant INNER JOIN geographic AS T3 ON T2.city = T3.city WHERE T3.County = 'san mateo county' AND T1.street_name = 'alpine rd' AND T1.street_num = 3140
| 1,683 | |
restaurant
|
In which streets of the city of San Francisco are there restaurants that serve seafood?
|
street refers to street_name; seafood refers to food_type = 'seafood'
|
SELECT T1.street_name FROM location AS T1 INNER JOIN generalinfo AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T1.city = 'san francisco' AND T2.food_type = 'seafood' AND street_name IS NOT NULL
| 1,684 | |
restaurant
|
List all counties where there is no Bakers Square Restaurant & Pie Shop.
|
no Bakers Square Restaurant & Pie Shop refers to label <> 'bakers square restaurant & pie shop'
|
SELECT DISTINCT T2.county FROM generalinfo AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T1.label != 'bakers square restaurant & pie shop'
| 1,685 | |
restaurant
|
In how many counties is there a street called Appian Way?
|
a street called Appian Way refers to street_name = 'appian way'
|
SELECT COUNT(DISTINCT T2.county) FROM location AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T1.street_name = 'appian way'
| 1,686 | |
restaurant
|
What is the rating of each restaurant reviews on Atlantic Ave?
|
Atlantic Ave refers to street_name = 'atlantic ave'; rating refers to review
|
SELECT T1.review FROM generalinfo AS T1 INNER JOIN location AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T2.street_name = 'atlantic ave'
| 1,687 | |
restaurant
|
Identify all restaurants in Contra Costa County by id.
|
SELECT T1.id_restaurant FROM location AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T2.county = 'contra costa county'
| 1,688 | ||
restaurant
|
Identify all the restaurants in Yolo County by their label.
|
SELECT T1.id_restaurant, T1.label FROM generalinfo AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T2.county = 'yolo county'
| 1,689 | ||
restaurant
|
What restaurant on Drive Street in San Rafael doesn't serve American food?
|
Drive Street refers to street_name = 'drive'; San Rafael refers to city = 'san rafael'; American food refers to food_type <> 'american'
|
SELECT T1.label FROM generalinfo AS T1 INNER JOIN location AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T2.street_name = 'drive' AND T1.food_type != 'american' AND T2.city = 'san rafael'
| 1,690 | |
restaurant
|
On which streets in the city of San Francisco are there restaurants with a review of 1.7?
|
street refers to street_name; review of 1.7 refers to review = 1.7
|
SELECT T2.street_name FROM generalinfo AS T1 INNER JOIN location AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T1.city = 'san francisco' AND T1.review = 1.7
| 1,691 | |
restaurant
|
Which restaurant on the street Alameda de las Pulgas in the city of Menlo Park is the worst rated?
|
restaurant refers to label; street Alameda de las Pulgas refers to street_name = 'avenida de las pulgas'; the worst rated refers to min(review)
|
SELECT T2.label FROM location AS T1 INNER JOIN generalinfo AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T1.street_name = 'avenida de las pulgas' AND T2.city = 'menlo park' ORDER BY review LIMIT 1
| 1,692 | |
restaurant
|
On what street in Tuolumne County is Good Heavens restaurant located?
|
street refers to street_name; Good Heavens restaurant refers to label = 'good heavens'
|
SELECT T1.street_name FROM location AS T1 INNER JOIN generalinfo AS T2 ON T1.id_restaurant = T2.id_restaurant INNER JOIN geographic AS T3 ON T2.city = T3.city WHERE T2.label = 'good heavens' AND T3.county = 'tuolumne county'
| 1,693 | |
restaurant
|
Indicate the street numbers where Aux Delices Vietnamese Restaurant are located.
|
street numbers refers to street_num; Aux Delices Vietnamese Restaurant refers to label = 'aux delices vietnamese restaurant'
|
SELECT DISTINCT T1.street_num FROM location AS T1 INNER JOIN generalinfo AS T2 ON T1.id_restaurant = T2.id_restaurant WHERE T2.label = 'aux delices vietnamese restaurant'
| 1,694 | |
restaurant
|
Identify all the restaurants in Marin County by their id.
|
SELECT T1.id_restaurant FROM generalinfo AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T2.county = 'marin county'
| 1,695 | ||
restaurant
|
In which regions are there no pizza restaurants?
|
no pizza restaurants refers to food_type = 'pizza'
|
SELECT DISTINCT T2.region FROM generalinfo AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T1.food_type = 'pizza' AND T2.region != 'unknown'
| 1,696 | |
restaurant
|
Calculate the average rating of reviews for restaurants in Santa Cruz County.
|
average rating = divide(sum(review where county = 'santa cruz county'), count(id_restaurant where county = 'santa cruz county'))
|
SELECT AVG(T2.review) FROM geographic AS T1 INNER JOIN generalinfo AS T2 ON T1.city = T2.city WHERE T1.county = 'santa cruz county'
| 1,697 | |
restaurant
|
What percentage of restaurants in Monterey County have Mexican food?
|
Mexican food refers to food_type = 'mexican'; percentage = divide(count(id_restaurant where food_type = 'mexican'), count(id_restaurant)) where county = 'monterey county' * 100%
|
SELECT CAST(SUM(IIF(T2.food_type = 'mexican', 1, 0)) AS REAL) * 100 / COUNT(T2.id_restaurant) FROM geographic AS T1 INNER JOIN generalinfo AS T2 ON T1.city = T2.city WHERE T1.county = 'monterey county'
| 1,698 | |
restaurant
|
What percentage of streets named 11th Street are in Alameda County?
|
street named 11th Street refers to street_name = '11th st'; percentage = divide(count(street_name = '11th st' and County = 'alameda county'), count(street_name where County = 'alameda county')) * 100%
|
SELECT CAST(SUM(IIF(T1.street_name = '11th st', 1, 0)) AS REAL) * 100 / COUNT(T1.id_restaurant) FROM location AS T1 INNER JOIN geographic AS T2 ON T1.city = T2.city WHERE T2.County = 'alameda county'
| 1,699 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.