Dataset Viewer
Auto-converted to Parquet Duplicate
db_id
stringclasses
40 values
query
stringlengths
22
608
question
stringlengths
22
185
soccer_3
SELECT count(*) FROM club
How many clubs are there?
soccer_3
SELECT count(*) FROM club
Count the number of clubs.
soccer_3
SELECT Name FROM club ORDER BY Name ASC
List the name of clubs in ascending alphabetical order.
soccer_3
SELECT Name FROM club ORDER BY Name ASC
What are the names of clubs, ordered alphabetically?
soccer_3
SELECT Manager , Captain FROM club
What are the managers and captains of clubs?
soccer_3
SELECT Manager , Captain FROM club
Return the managers and captains of all clubs.
soccer_3
SELECT Name FROM club WHERE Manufacturer != "Nike"
List the name of clubs whose manufacturer is not "Nike"
soccer_3
SELECT Name FROM club WHERE Manufacturer != "Nike"
What are the names of clubs who do not have the manufacturer Nike?
soccer_3
SELECT Name FROM player ORDER BY Wins_count ASC
What are the names of players in ascending order of wins count?
soccer_3
SELECT Name FROM player ORDER BY Wins_count ASC
Return the names of players in order of count of wins, ascending.
soccer_3
SELECT Name FROM player ORDER BY Earnings DESC LIMIT 1
What is the name of the player with the highest earnings?
soccer_3
SELECT Name FROM player ORDER BY Earnings DESC LIMIT 1
Return the name of the player who earns the most money.
soccer_3
SELECT DISTINCT Country FROM player WHERE Earnings > 1200000
What are the distinct countries of players with earnings higher than 1200000?
soccer_3
SELECT DISTINCT Country FROM player WHERE Earnings > 1200000
From which countries are players who make more than 1200000 from?
soccer_3
SELECT Country FROM player WHERE Wins_count > 2 ORDER BY Earnings DESC LIMIT 1
What is the country of the player with the highest earnings among players that have more than 2 win counts?
soccer_3
SELECT Country FROM player WHERE Wins_count > 2 ORDER BY Earnings DESC LIMIT 1
Of players who have more than 2 wins, what is the country of the player who makes the most?
soccer_3
SELECT T2.Name , T1.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID
Show names of players and names of clubs they are in.
soccer_3
SELECT T2.Name , T1.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID
What are the names of players and the corresponding clubs that they are in?
soccer_3
SELECT T1.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T2.Wins_count > 2
Show names of clubs that have players with more than 2 win counts.
soccer_3
SELECT T1.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T2.Wins_count > 2
What are the names of clubs that have players who have won more than twice?
soccer_3
SELECT T2.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T1.Manager = "Sam Allardyce"
Show names of players from the club with manager "Sam Allardyce".
soccer_3
SELECT T2.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T1.Manager = "Sam Allardyce"
What are the names of players from the club managed by Sam Allardyce?
soccer_3
SELECT T1.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID GROUP BY T1.Club_ID ORDER BY avg(T2.Earnings) DESC
Show names of clubs in descending order of average earnings of players belonging.
soccer_3
SELECT T1.Name FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID GROUP BY T1.Club_ID ORDER BY avg(T2.Earnings) DESC
What are the names of clubs, ordered descending by the average earnings of players within each?
soccer_3
SELECT Manufacturer , COUNT(*) FROM club GROUP BY Manufacturer
Show different manufacturers and the number of clubs they are associated with.
soccer_3
SELECT Manufacturer , COUNT(*) FROM club GROUP BY Manufacturer
How many clubs use each manufacturer?
soccer_3
SELECT Manufacturer FROM club GROUP BY Manufacturer ORDER BY COUNT(*) DESC LIMIT 1
Please show the most common manufacturer of clubs.
soccer_3
SELECT Manufacturer FROM club GROUP BY Manufacturer ORDER BY COUNT(*) DESC LIMIT 1
Which manufacturer is most common among clubs?
soccer_3
SELECT Manufacturer FROM club GROUP BY Manufacturer HAVING COUNT(*) > 1
List the manufacturers that are associated with more than one club.
soccer_3
SELECT Manufacturer FROM club GROUP BY Manufacturer HAVING COUNT(*) > 1
Which manufacturers work for more than 1 club?
soccer_3
SELECT Country FROM player GROUP BY Country HAVING COUNT(*) > 1
List the country that have more than one player.
soccer_3
SELECT Country FROM player GROUP BY Country HAVING COUNT(*) > 1
Which countries have produced more than one player?
soccer_3
SELECT Name FROM club WHERE Club_ID NOT IN (SELECT Club_ID FROM player)
List the name of clubs that do not have players.
soccer_3
SELECT Name FROM club WHERE Club_ID NOT IN (SELECT Club_ID FROM player)
What are the names of clubs that do not have any players?
soccer_3
SELECT Country FROM player WHERE Earnings > 1400000 INTERSECT SELECT Country FROM player WHERE Earnings < 1100000
Show the country of players with earnings more than 1400000 and players with earnings less than 1100000.
soccer_3
SELECT Country FROM player WHERE Earnings > 1400000 INTERSECT SELECT Country FROM player WHERE Earnings < 1100000
Which country has produced both players with earnings over 1400000 and players with earnings below 1100000?
soccer_3
SELECT COUNT (DISTINCT Country) FROM player
What is the number of distinct countries of all players?
soccer_3
SELECT COUNT (DISTINCT Country) FROM player
How many different countries are players from?
soccer_3
SELECT Earnings FROM player WHERE Country = "Australia" OR Country = "Zimbabwe"
Show the earnings of players from country "Australia" or "Zimbabwe".
soccer_3
SELECT Earnings FROM player WHERE Country = "Australia" OR Country = "Zimbabwe"
What are the earnings of players from either of the countries of Australia or Zimbabwe?
e_commerce
SELECT T1.customer_id , T1.customer_first_name , T1.customer_last_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) > 2 INTERSECT SELECT T1.customer_id , T1.customer_first_name , T1.customer_last_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id JOIN Order_items AS T3 ON T2.order_id = T3.order_id GROUP BY T1.customer_id HAVING count(*) >= 3
List the id, first name and last name of the customers who both have placed more than 2 orders and have bought at least 3 items.
e_commerce
SELECT T1.customer_id , T1.customer_first_name , T1.customer_last_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) > 2 INTERSECT SELECT T1.customer_id , T1.customer_first_name , T1.customer_last_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id JOIN Order_items AS T3 ON T2.order_id = T3.order_id GROUP BY T1.customer_id HAVING count(*) >= 3
What are the ids, first and last names of the customers who have ordered more than twice and have bought at least 3 items?
e_commerce
SELECT T1.order_id , T1.order_status_code , count(*) FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id
For the orders with any produts, how many products does each orders contain ? List the order id, status and the number.
e_commerce
SELECT T1.order_id , T1.order_status_code , count(*) FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id
For every order, how many products does it contain, and what are the orders' statuses and ids?
e_commerce
SELECT min(date_order_placed) FROM Orders UNION SELECT T1.date_order_placed FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id HAVING count(*) > 1
List the dates of the orders which were placed at the earliest time or have more than 1 items.
e_commerce
SELECT min(date_order_placed) FROM Orders UNION SELECT T1.date_order_placed FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id HAVING count(*) > 1
What are the dates of the earliest order and the dates of all orders with more than 1 item?
e_commerce
SELECT customer_first_name , customer_middle_initial , customer_last_name FROM Customers EXCEPT SELECT T1.customer_first_name , T1.customer_middle_initial , T1.customer_last_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id
Which customers did not make any orders? List the first name, middle initial and last name.
e_commerce
SELECT customer_first_name , customer_middle_initial , customer_last_name FROM Customers EXCEPT SELECT T1.customer_first_name , T1.customer_middle_initial , T1.customer_last_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id
WHat are the first and last names, and middle initials of all customers who did not make any orders?
e_commerce
SELECT product_id , product_name , product_price , product_color FROM Products EXCEPT SELECT T1.product_id , T1.product_name , T1.product_price , T1.product_color FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Orders AS T3 ON T2.order_id = T3.order_id GROUP BY T1.product_id HAVING count(*) >= 2
What are the id, name, price and color of the products which have not been ordered for at least twice?
e_commerce
select t1.product_id , t1.product_name , t1.product_price , t1.product_color from products as t1 join order_items as t2 on t1.product_id = t2.product_id join orders as t3 on t2.order_id = t3.order_id group by t1.product_id having count(*) < 2
What are the ids , names , prices , and colors of all products that have been listed in less than two orders ?
e_commerce
SELECT T1.order_id , T1.date_order_placed FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id HAVING count(*) >= 2
Which orders have at least 2 products on it? List the order id and date.
e_commerce
SELECT T1.order_id , T1.date_order_placed FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id HAVING count(*) >= 2
What are the ids and dates of the orders with at least two products?
e_commerce
SELECT T1.product_id , T1.product_name , T1.product_price FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_id ORDER BY count(*) DESC LIMIT 1
Which product are listed in orders most frequently? List the id, product name and price.
e_commerce
SELECT T1.product_id , T1.product_name , T1.product_price FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_id ORDER BY count(*) DESC LIMIT 1
What are the ids, names, and prices of all products that are ordered most frequently?
e_commerce
SELECT T1.order_id , sum(T2.product_price) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id GROUP BY T1.order_id ORDER BY sum(T2.product_price) ASC LIMIT 1
Which order have the least sum of the product prices. List the order id and sum.
e_commerce
select t1.order_id , sum(t2.product_price) from order_items as t1 join products as t2 on t1.product_id = t2.product_id group by t1.order_id order by sum(t2.product_price) asc limit 1
What is the order that total cost the least , and how much is the total cost ?
e_commerce
SELECT Payment_method_code FROM Customer_Payment_Methods GROUP BY Payment_method_code ORDER BY count(*) DESC LIMIT 1
What is the most popular payment method?
e_commerce
SELECT Payment_method_code FROM Customer_Payment_Methods GROUP BY Payment_method_code ORDER BY count(*) DESC LIMIT 1
What is the payment method that most customers use?
e_commerce
SELECT T1.gender_code , count(*) FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id JOIN Order_items AS T3 ON T2.order_id = T3.order_id GROUP BY T1.gender_code
How many number of products does each gender of customers buy? List the gender and the number
e_commerce
SELECT T1.gender_code , count(*) FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id JOIN Order_items AS T3 ON T2.order_id = T3.order_id GROUP BY T1.gender_code
How many products does each gender buy?
e_commerce
SELECT T1.gender_code , count(*) FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.gender_code
How many orders has each gender of customers placed?
e_commerce
SELECT T1.gender_code , count(*) FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.gender_code
How many orders has each gender placed?
e_commerce
SELECT T1.customer_first_name , T1.customer_middle_initial , T1.customer_last_name , T2.Payment_method_code FROM Customers AS T1 JOIN Customer_Payment_Methods AS T2 ON T1.customer_id = T2.customer_id
List the customers' first name, middle initial, last name and payment methods.
e_commerce
SELECT T1.customer_first_name , T1.customer_middle_initial , T1.customer_last_name , T2.Payment_method_code FROM Customers AS T1 JOIN Customer_Payment_Methods AS T2 ON T1.customer_id = T2.customer_id
What are the first names, middle initials, last names, and payment methods of all customers?
e_commerce
SELECT T1.invoice_status_code , T1.invoice_date , T2.shipment_date FROM Invoices AS T1 JOIN Shipments AS T2 ON T1.invoice_number = T2.invoice_number
List the invoices' status, date and the date of shipment.
e_commerce
SELECT T1.invoice_status_code , T1.invoice_date , T2.shipment_date FROM Invoices AS T1 JOIN Shipments AS T2 ON T1.invoice_number = T2.invoice_number
What are the statuses, dates, and shipment dates for all invoices?
e_commerce
SELECT T1.product_name , T4.shipment_date FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Shipment_Items AS T3 ON T2.order_item_id = T3.order_item_id JOIN Shipments AS T4 ON T3.shipment_id = T4.shipment_id
List the names of the products being shipped and the corresponding shipment date.
e_commerce
SELECT T1.product_name , T4.shipment_date FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Shipment_Items AS T3 ON T2.order_item_id = T3.order_item_id JOIN Shipments AS T4 ON T3.shipment_id = T4.shipment_id
What are the names of the products tht have been shipped, and on what days were they shipped?
e_commerce
SELECT T1.order_item_status_code , T3.shipment_tracking_number FROM Order_items AS T1 JOIN Shipment_Items AS T2 ON T1.order_item_id = T2.order_item_id JOIN Shipments AS T3 ON T2.shipment_id = T3.shipment_id
What is the status code of the items being ordered and shipped and its corresponding shipment tracking number?
e_commerce
SELECT T1.order_item_status_code , T3.shipment_tracking_number FROM Order_items AS T1 JOIN Shipment_Items AS T2 ON T1.order_item_id = T2.order_item_id JOIN Shipments AS T3 ON T2.shipment_id = T3.shipment_id
What is the status code of the items have been ordered and shipped, and also what are their shipment tracking numbers?
e_commerce
SELECT T1.product_name , T1.product_color FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Shipment_Items AS T3 ON T2.order_item_id = T3.order_item_id JOIN Shipments AS T4 ON T3.shipment_id = T4.shipment_id
What is the product name and the color of the ordered items which have been shipped?
e_commerce
SELECT T1.product_name , T1.product_color FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Shipment_Items AS T3 ON T2.order_item_id = T3.order_item_id JOIN Shipments AS T4 ON T3.shipment_id = T4.shipment_id
What are the names and colors of all products that have been shipped?
e_commerce
SELECT DISTINCT T1.product_name , T1.product_price , T1.product_description FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Orders AS T3 ON T2.order_id = T3.order_id JOIN Customers AS T4 ON T3.customer_id = T4.customer_id WHERE T4.gender_code = 'Female'
List all the distinct product names, price and descriptions which are bought by female customers.
e_commerce
SELECT DISTINCT T1.product_name , T1.product_price , T1.product_description FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id JOIN Orders AS T3 ON T2.order_id = T3.order_id JOIN Customers AS T4 ON T3.customer_id = T4.customer_id WHERE T4.gender_code = 'Female'
What are the different names, prices, and descriptions for all products bought by female customers?
e_commerce
SELECT invoice_status_code FROM Invoices WHERE invoice_number NOT IN ( SELECT invoice_number FROM Shipments )
What are invoices status of all the orders which have not been shipped?
e_commerce
SELECT invoice_status_code FROM Invoices WHERE invoice_number NOT IN ( SELECT invoice_number FROM Shipments )
What are the invoice statuses for all orderes that have not been shipped out yet?
e_commerce
select t1.order_id , t1.date_order_placed , sum(t3.product_price) from orders as t1 join order_items as t2 on t1.order_id = t2.order_id join products as t3 on t2.product_id = t3.product_id group by t1.order_id
What are the total cost of all the orders ? List the order id , date , and total cost .
e_commerce
SELECT T1.order_id , T1.date_order_placed , sum(T3.product_price) FROM Orders AS T1 JOIN Order_items AS T2 ON T1.order_id = T2.order_id JOIN Products AS T3 ON T2.product_id = T3.product_id GROUP BY T1.order_id
For each order, what is its id, date, and total amount paid?
e_commerce
SELECT count(DISTINCT customer_id) FROM Orders
How many customers have placed any order?
e_commerce
SELECT count(DISTINCT customer_id) FROM Orders
How many different customers have ordered things?
e_commerce
SELECT count(DISTINCT order_item_status_code) FROM Order_items
How many item states are there in the orders?
e_commerce
SELECT count(DISTINCT order_item_status_code) FROM Order_items
How many different item status codes are there listed in ordered items?
e_commerce
SELECT count(DISTINCT Payment_method_code) FROM Customer_Payment_Methods
How many different payment methods are there?
e_commerce
SELECT count(DISTINCT Payment_method_code) FROM Customer_Payment_Methods
How many different payment methods can customers choose from?
e_commerce
SELECT login_name , login_password FROM Customers WHERE phone_number LIKE '+12%'
What are the login names and passwords of the customers whose phone number have the prefix '+12'?
e_commerce
SELECT login_name , login_password FROM Customers WHERE phone_number LIKE '+12%'
What are the usernames and passwords of all customers whose phone number starts with '+12'?
e_commerce
SELECT product_size FROM Products WHERE product_name LIKE '%Dell%'
What are the product sizes of the products whose name has the substring 'Dell'?
e_commerce
SELECT product_size FROM Products WHERE product_name LIKE '%Dell%'
What are the sizes of all products whose name includes the word 'Dell'?
e_commerce
SELECT product_price , product_size FROM Products WHERE product_price > ( SELECT avg(product_price) FROM Products )
What are the product price and the product size of the products whose price is above average?
e_commerce
SELECT product_price , product_size FROM Products WHERE product_price > ( SELECT avg(product_price) FROM Products )
What are the prices and sizes of all products whose price is above the mean?
e_commerce
SELECT count(*) FROM Products WHERE product_id NOT IN ( SELECT product_id FROM Order_items )
How many kinds of products have not been sold?
e_commerce
SELECT count(*) FROM Products WHERE product_id NOT IN ( SELECT product_id FROM Order_items )
What is the number of products that have not been ordered yet?
e_commerce
SELECT count(*) FROM Customers WHERE customer_id NOT IN ( SELECT customer_id FROM Customer_Payment_Methods )
How many customers do not have any payment method?
e_commerce
SELECT count(*) FROM Customers WHERE customer_id NOT IN ( SELECT customer_id FROM Customer_Payment_Methods )
How many customers do not have a listed payment method?
e_commerce
SELECT order_status_code , date_order_placed FROM Orders
What are all the order status and all the dates of orders?
e_commerce
SELECT order_status_code , date_order_placed FROM Orders
What are the status codes and dates placed for all of the orders?
e_commerce
SELECT address_line_1 , town_city , county FROM Customers WHERE Country = 'USA'
List the address, town and county information of the customers who live in the USA.
e_commerce
SELECT address_line_1 , town_city , county FROM Customers WHERE Country = 'USA'
What are the addresses, towns, and county information for all customers who live in the United States?
e_commerce
SELECT T1.customer_first_name , T4.product_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id JOIN Order_items AS T3 ON T2.order_id = T3.order_id JOIN Products AS T4 ON T3.product_id = T4.product_id
List all the pairs of buyer first names and product names.
e_commerce
SELECT T1.customer_first_name , T4.product_name FROM Customers AS T1 JOIN Orders AS T2 ON T1.customer_id = T2.customer_id JOIN Order_items AS T3 ON T2.order_id = T3.order_id JOIN Products AS T4 ON T3.product_id = T4.product_id
What are the first names of all buyers and what products did they buy? List them in pairs.
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
29