Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
3,900 | <question>: What is the name of the customer who has the most orders? <context>: CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1 |
3,901 | <question>: What is the customer id of the customer who has the most orders? <context>: CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR) <answer>: SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1 |
3,902 | <question>: Give me a list of id and status of orders which belong to the customer named "Jeramie". <context>: CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (order_id VARCHAR, order_status VARCHAR, customer_id VARCHAR) <answer>: SELECT T2.order_id, T2.order_status FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie" |
3,903 | <question>: Find the dates of orders which belong to the customer named "Jeramie". <context>: CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, customer_id VARCHAR) <answer>: SELECT T2.date_order_placed FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T1.customer_name = "Jeramie" |
3,904 | <question>: Give me the names of customers who have placed orders between 2009-01-01 and 2010-01-01. <context>: CREATE TABLE orders (customer_id VARCHAR, date_order_placed VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.date_order_placed >= "2009-01-01" AND T2.date_order_placed <= "2010-01-01" |
3,905 | <question>: Give me a list of distinct product ids from orders placed between 1975-01-01 and 1976-01-01? <context>: CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR); CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR) <answer>: SELECT DISTINCT T2.product_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id WHERE T1.date_order_placed >= "1975-01-01" AND T1.date_order_placed <= "1976-01-01" |
3,906 | <question>: Find the names of the customers who have order status both "On Road" and "Shipped". <context>: CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped" |
3,907 | <question>: Find the id of the customers who have order status both "On Road" and "Shipped". <context>: CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_status VARCHAR) <answer>: SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" INTERSECT SELECT T1.customer_id FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "Shipped" |
3,908 | <question>: When was the order placed whose shipment tracking number is 3452? Give me the date. <context>: CREATE TABLE shipments (order_id VARCHAR, shipment_tracking_number VARCHAR); CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR) <answer>: SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.shipment_tracking_number = 3452 |
3,909 | <question>: What is the placement date of the order whose invoice number is 10? <context>: CREATE TABLE orders (date_order_placed VARCHAR, order_id VARCHAR); CREATE TABLE shipments (order_id VARCHAR, invoice_number VARCHAR) <answer>: SELECT T1.date_order_placed FROM orders AS T1 JOIN shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.invoice_number = 10 |
3,910 | <question>: List the count and id of each product in all the orders. <context>: CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE products (product_id VARCHAR) <answer>: SELECT COUNT(*), T3.product_id FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id |
3,911 | <question>: List the name and count of each product in all orders. <context>: CREATE TABLE orders (order_id VARCHAR); CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR) <answer>: SELECT T3.product_name, COUNT(*) FROM orders AS T1 JOIN order_items AS T2 JOIN products AS T3 ON T1.order_id = T2.order_id AND T2.product_id = T3.product_id GROUP BY T3.product_id |
3,912 | <question>: Find the ids of orders which are shipped after 2000-01-01. <context>: CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER) <answer>: SELECT order_id FROM shipments WHERE shipment_date > "2000-01-01" |
3,913 | <question>: Find the id of the order which is shipped most recently. <context>: CREATE TABLE shipments (order_id VARCHAR, shipment_date INTEGER) <answer>: SELECT order_id FROM shipments WHERE shipment_date = (SELECT MAX(shipment_date) FROM shipments) |
3,914 | <question>: List the names of all distinct products in alphabetical order. <context>: CREATE TABLE products (product_name VARCHAR) <answer>: SELECT DISTINCT product_name FROM products ORDER BY product_name |
3,915 | <question>: List the ids of all distinct orders ordered by placed date. <context>: CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR) <answer>: SELECT DISTINCT order_id FROM orders ORDER BY date_order_placed |
3,916 | <question>: What is the id of the order which has the most items? <context>: CREATE TABLE orders (order_id VARCHAR); CREATE TABLE order_items (order_id VARCHAR) <answer>: SELECT T1.order_id FROM orders AS T1 JOIN order_items AS T2 ON T1.order_id = T2.order_id GROUP BY T1.order_id ORDER BY COUNT(*) DESC LIMIT 1 |
3,917 | <question>: Find the invoice numbers which are created before 1989-09-03 or after 2007-12-25. <context>: CREATE TABLE invoices (invoice_number VARCHAR, invoice_date VARCHAR) <answer>: SELECT invoice_number FROM invoices WHERE invoice_date < "1989-09-03" OR invoice_date > "2007-12-25" |
3,918 | <question>: Find the distinct details of invoices which are created before 1989-09-03 or after 2007-12-25. <context>: CREATE TABLE invoices (invoice_details VARCHAR, invoice_date VARCHAR) <answer>: SELECT DISTINCT invoice_details FROM invoices WHERE invoice_date < "1989-09-03" OR invoice_date > "2007-12-25" |
3,919 | <question>: For each customer who has at least two orders, find the customer name and number of orders made. <context>: CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T2.customer_name, COUNT(*) FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) >= 2 |
3,920 | <question>: Find the name of the customers who have at most two orders. <context>: CREATE TABLE orders (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T2.customer_name FROM orders AS T1 JOIN customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T2.customer_id HAVING COUNT(*) <= 2 |
3,921 | <question>: List the names of the customers who have once bought product "food". <context>: CREATE TABLE products (product_name VARCHAR, product_id VARCHAR); CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_id VARCHAR) <answer>: SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1 |
3,922 | <question>: List the names of customers who have once canceled the purchase of the product "food" (the item status is "Cancel"). <context>: CREATE TABLE orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE order_items (product_id VARCHAR, order_item_status VARCHAR, order_id VARCHAR) <answer>: SELECT T1.customer_name FROM customers AS T1 JOIN orders AS T2 JOIN order_items AS T3 JOIN products AS T4 ON T1.customer_id = T2.customer_id AND T2.order_id = T3.order_id AND T3.product_id = T4.product_id WHERE T3.order_item_status = "Cancel" AND T4.product_name = "food" GROUP BY T1.customer_id HAVING COUNT(*) >= 1 |
3,923 | <question>: How many architects are female? <context>: CREATE TABLE architect (gender VARCHAR) <answer>: SELECT COUNT(*) FROM architect WHERE gender = 'female' |
3,924 | <question>: List the name, nationality and id of all male architects ordered by their names lexicographically. <context>: CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR, gender VARCHAR) <answer>: SELECT name, nationality, id FROM architect WHERE gender = 'male' ORDER BY name |
3,925 | <question>: What is the maximum length in meters for the bridges and what are the architects' names? <context>: CREATE TABLE architect (name VARCHAR, id VARCHAR); CREATE TABLE bridge (length_meters INTEGER, architect_id VARCHAR) <answer>: SELECT MAX(T1.length_meters), T2.name FROM bridge AS T1 JOIN architect AS T2 ON T1.architect_id = T2.id |
3,926 | <question>: What is the average length in feet of the bridges? <context>: CREATE TABLE bridge (length_feet INTEGER) <answer>: SELECT AVG(length_feet) FROM bridge |
3,927 | <question>: What are the names and year of construction for the mills of 'Grondzeiler' type? <context>: CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR) <answer>: SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler' |
3,928 | <question>: What are the distinct names and nationalities of the architects who have ever built a mill? <context>: CREATE TABLE mill (Id VARCHAR); CREATE TABLE architect (name VARCHAR, nationality VARCHAR, id VARCHAR) <answer>: SELECT DISTINCT T1.name, T1.nationality FROM architect AS T1 JOIN mill AS t2 ON T1.id = T2.architect_id |
3,929 | <question>: What are the names of the mills which are not located in 'Donceel'? <context>: CREATE TABLE mill (name VARCHAR, LOCATION VARCHAR) <answer>: SELECT name FROM mill WHERE LOCATION <> 'Donceel' |
3,930 | <question>: What are the distinct types of mills that are built by American or Canadian architects? <context>: CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (type VARCHAR, architect_id VARCHAR) <answer>: SELECT DISTINCT T1.type FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id WHERE T2.nationality = 'American' OR T2.nationality = 'Canadian' |
3,931 | <question>: What are the ids and names of the architects who built at least 3 bridges ? <context>: CREATE TABLE architect (id VARCHAR, name VARCHAR); CREATE TABLE bridge (architect_id VARCHAR) <answer>: SELECT T1.id, T1.name FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) >= 3 |
3,932 | <question>: What is the id, name and nationality of the architect who built most mills? <context>: CREATE TABLE architect (id VARCHAR, name VARCHAR, nationality VARCHAR); CREATE TABLE mill (architect_id VARCHAR) <answer>: SELECT T1.id, T1.name, T1.nationality FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 |
3,933 | <question>: What are the ids, names and genders of the architects who built two bridges or one mill? <context>: CREATE TABLE mill (architect_id VARCHAR); CREATE TABLE architect (id VARCHAR, name VARCHAR, gender VARCHAR); CREATE TABLE bridge (architect_id VARCHAR) <answer>: SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 2 UNION SELECT T1.id, T1.name, T1.gender FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id HAVING COUNT(*) = 1 |
3,934 | <question>: What is the location of the bridge named 'Kolob Arch' or 'Rainbow Bridge'? <context>: CREATE TABLE bridge (LOCATION VARCHAR, name VARCHAR) <answer>: SELECT LOCATION FROM bridge WHERE name = 'Kolob Arch' OR name = 'Rainbow Bridge' |
3,935 | <question>: Which of the mill names contains the french word 'Moulin'? <context>: CREATE TABLE mill (name VARCHAR) <answer>: SELECT name FROM mill WHERE name LIKE '%Moulin%' |
3,936 | <question>: What are the distinct name of the mills built by the architects who have also built a bridge longer than 80 meters? <context>: CREATE TABLE architect (Id VARCHAR); CREATE TABLE mill (name VARCHAR, architect_id VARCHAR); CREATE TABLE bridge (architect_id VARCHAR, length_meters INTEGER) <answer>: SELECT DISTINCT T1.name FROM mill AS T1 JOIN architect AS t2 ON T1.architect_id = T2.id JOIN bridge AS T3 ON T3.architect_id = T2.id WHERE T3.length_meters > 80 |
3,937 | <question>: What is the most common mill type, and how many are there? <context>: CREATE TABLE mill (TYPE VARCHAR) <answer>: SELECT TYPE, COUNT(*) FROM mill GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1 |
3,938 | <question>: How many architects haven't built a mill before year 1850? <context>: CREATE TABLE mill (id VARCHAR, architect_id VARCHAR, built_year INTEGER); CREATE TABLE architect (id VARCHAR, architect_id VARCHAR, built_year INTEGER) <answer>: SELECT COUNT(*) FROM architect WHERE NOT id IN (SELECT architect_id FROM mill WHERE built_year < 1850) |
3,939 | <question>: show the name of all bridges that was designed by american archtect, and sort the result by the bridge feet length. <context>: CREATE TABLE bridge (name VARCHAR, architect_id VARCHAR, length_feet VARCHAR); CREATE TABLE architect (id VARCHAR, nationality VARCHAR) <answer>: SELECT t1.name FROM bridge AS t1 JOIN architect AS t2 ON t1.architect_id = t2.id WHERE t2.nationality = 'American' ORDER BY t1.length_feet |
3,940 | <question>: How many book clubs are there? <context>: CREATE TABLE book_club (Id VARCHAR) <answer>: SELECT COUNT(*) FROM book_club |
3,941 | <question>: show the titles, and authors or editors for all books made after the year 1989. <context>: CREATE TABLE book_club (book_title VARCHAR, author_or_editor VARCHAR, YEAR INTEGER) <answer>: SELECT book_title, author_or_editor FROM book_club WHERE YEAR > 1989 |
3,942 | <question>: Show all distinct publishers for books. <context>: CREATE TABLE book_club (publisher VARCHAR) <answer>: SELECT DISTINCT publisher FROM book_club |
3,943 | <question>: Show the years, book titles, and publishers for all books, in descending order by year. <context>: CREATE TABLE book_club (YEAR VARCHAR, book_title VARCHAR, publisher VARCHAR) <answer>: SELECT YEAR, book_title, publisher FROM book_club ORDER BY YEAR DESC |
3,944 | <question>: Show all publishers and the number of books for each publisher. <context>: CREATE TABLE book_club (publisher VARCHAR) <answer>: SELECT publisher, COUNT(*) FROM book_club GROUP BY publisher |
3,945 | <question>: What is the publisher with most number of books? <context>: CREATE TABLE book_club (publisher VARCHAR) <answer>: SELECT publisher FROM book_club GROUP BY publisher ORDER BY COUNT(*) DESC LIMIT 1 |
3,946 | <question>: Show all book categories and the number of books in each category. <context>: CREATE TABLE book_club (category VARCHAR) <answer>: SELECT category, COUNT(*) FROM book_club GROUP BY category |
3,947 | <question>: List categories that have at least two books after year 1989. <context>: CREATE TABLE book_club (category VARCHAR, YEAR INTEGER) <answer>: SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2 |
3,948 | <question>: Show publishers with a book published in 1989 and a book in 1990. <context>: CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR) <answer>: SELECT publisher FROM book_club WHERE YEAR = 1989 INTERSECT SELECT publisher FROM book_club WHERE YEAR = 1990 |
3,949 | <question>: Show all publishers which do not have a book in 1989. <context>: CREATE TABLE book_club (publisher VARCHAR, YEAR VARCHAR) <answer>: SELECT publisher FROM book_club EXCEPT SELECT publisher FROM book_club WHERE YEAR = 1989 |
3,950 | <question>: Show all movie titles, years, and directors, ordered by budget. <context>: CREATE TABLE movie (title VARCHAR, YEAR VARCHAR, director VARCHAR, budget_million VARCHAR) <answer>: SELECT title, YEAR, director FROM movie ORDER BY budget_million |
3,951 | <question>: How many movie directors are there? <context>: CREATE TABLE movie (director VARCHAR) <answer>: SELECT COUNT(DISTINCT director) FROM movie |
3,952 | <question>: What is the title and director for the movie with highest worldwide gross in the year 2000 or before? <context>: CREATE TABLE movie (title VARCHAR, director VARCHAR, YEAR VARCHAR, gross_worldwide VARCHAR) <answer>: SELECT title, director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1 |
3,953 | <question>: Show all director names who have a movie in both year 1999 and 2000. <context>: CREATE TABLE movie (director VARCHAR, YEAR VARCHAR) <answer>: SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999 |
3,954 | <question>: Show all director names who have a movie in the year 1999 or 2000. <context>: CREATE TABLE movie (director VARCHAR, YEAR VARCHAR) <answer>: SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000 |
3,955 | <question>: What is the average, maximum, and minimum budget for all movies before 2000. <context>: CREATE TABLE movie (budget_million INTEGER, YEAR INTEGER) <answer>: SELECT AVG(budget_million), MAX(budget_million), MIN(budget_million) FROM movie WHERE YEAR < 2000 |
3,956 | <question>: List all company names with a book published by Alyson. <context>: CREATE TABLE culture_company (company_name VARCHAR, book_club_id VARCHAR); CREATE TABLE book_club (book_club_id VARCHAR, publisher VARCHAR) <answer>: SELECT T1.company_name FROM culture_company AS T1 JOIN book_club AS T2 ON T1.book_club_id = T2.book_club_id WHERE T2.publisher = 'Alyson' |
3,957 | <question>: Show the movie titles and book titles for all companies in China. <context>: CREATE TABLE movie (title VARCHAR, movie_id VARCHAR); CREATE TABLE culture_company (movie_id VARCHAR, book_club_id VARCHAR, incorporated_in VARCHAR); CREATE TABLE book_club (book_title VARCHAR, book_club_id VARCHAR) <answer>: SELECT T1.title, T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China' |
3,958 | <question>: Show all company names with a movie directed in year 1999. <context>: CREATE TABLE movie (movie_id VARCHAR, year VARCHAR); CREATE TABLE culture_company (company_name VARCHAR, movie_id VARCHAR) <answer>: SELECT T2.company_name FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id WHERE T1.year = 1999 |
3,959 | <question>: How many singers do we have? <context>: CREATE TABLE singer (Id VARCHAR) <answer>: SELECT COUNT(*) FROM singer |
3,960 | <question>: Show name, country, age for all singers ordered by age from the oldest to the youngest. <context>: CREATE TABLE singer (name VARCHAR, country VARCHAR, age VARCHAR) <answer>: SELECT name, country, age FROM singer ORDER BY age DESC |
3,961 | <question>: What is the average, minimum, and maximum age of all singers from France? <context>: CREATE TABLE singer (age INTEGER, country VARCHAR) <answer>: SELECT AVG(age), MIN(age), MAX(age) FROM singer WHERE country = 'France' |
3,962 | <question>: Show the name and the release year of the song by the youngest singer. <context>: CREATE TABLE singer (song_name VARCHAR, song_release_year VARCHAR, age VARCHAR) <answer>: SELECT song_name, song_release_year FROM singer ORDER BY age LIMIT 1 |
3,963 | <question>: What are all distinct countries where singers above age 20 are from? <context>: CREATE TABLE singer (country VARCHAR, age INTEGER) <answer>: SELECT DISTINCT country FROM singer WHERE age > 20 |
3,964 | <question>: Show all countries and the number of singers in each country. <context>: CREATE TABLE singer (country VARCHAR) <answer>: SELECT country, COUNT(*) FROM singer GROUP BY country |
3,965 | <question>: List all song names by singers above the average age. <context>: CREATE TABLE singer (song_name VARCHAR, age INTEGER) <answer>: SELECT song_name FROM singer WHERE age > (SELECT AVG(age) FROM singer) |
3,966 | <question>: Show location and name for all stadiums with a capacity between 5000 and 10000. <context>: CREATE TABLE stadium (LOCATION VARCHAR, name VARCHAR, capacity INTEGER) <answer>: SELECT LOCATION, name FROM stadium WHERE capacity BETWEEN 5000 AND 10000 |
3,967 | <question>: What is the maximum capacity and the average of all stadiums ? <context>: CREATE TABLE stadium (average VARCHAR, capacity INTEGER) <answer>: SELECT MAX(capacity), average FROM stadium |
3,968 | <question>: What is the average and maximum capacities for all stadiums ? <context>: CREATE TABLE stadium (capacity INTEGER) <answer>: SELECT AVG(capacity), MAX(capacity) FROM stadium |
3,969 | <question>: What is the name and capacity for the stadium with highest average attendance? <context>: CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, average VARCHAR) <answer>: SELECT name, capacity FROM stadium ORDER BY average DESC LIMIT 1 |
3,970 | <question>: How many concerts are there in year 2014 or 2015? <context>: CREATE TABLE concert (YEAR VARCHAR) <answer>: SELECT COUNT(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015 |
3,971 | <question>: Show the stadium name and the number of concerts in each stadium. <context>: CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR) <answer>: SELECT T2.name, COUNT(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id |
3,972 | <question>: Show the stadium name and capacity with most number of concerts in year 2014 or after. <context>: CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR) <answer>: SELECT T2.name, T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1 |
3,973 | <question>: What is the name and capacity of the stadium with the most concerts after 2013 ? <context>: CREATE TABLE concert (stadium_id VARCHAR, year INTEGER); CREATE TABLE stadium (name VARCHAR, capacity VARCHAR, stadium_id VARCHAR) <answer>: SELECT t2.name, t2.capacity FROM concert AS t1 JOIN stadium AS t2 ON t1.stadium_id = t2.stadium_id WHERE t1.year > 2013 GROUP BY t2.stadium_id ORDER BY COUNT(*) DESC LIMIT 1 |
3,974 | <question>: Which year has most number of concerts? <context>: CREATE TABLE concert (YEAR VARCHAR) <answer>: SELECT YEAR FROM concert GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1 |
3,975 | <question>: Show the stadium names without any concert. <context>: CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (name VARCHAR, stadium_id VARCHAR) <answer>: SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert) |
3,976 | <question>: Show countries where a singer above age 40 and a singer below 30 are from. <context>: CREATE TABLE singer (country VARCHAR, age INTEGER) <answer>: SELECT country FROM singer WHERE age > 40 INTERSECT SELECT country FROM singer WHERE age < 30 |
3,977 | <question>: Show names for all stadiums except for stadiums having a concert in year 2014. <context>: CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, year VARCHAR); CREATE TABLE stadium (name VARCHAR) <answer>: SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014 |
3,978 | <question>: Show the name and theme for all concerts and the number of singers in each concert. <context>: CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR) <answer>: SELECT T2.concert_name, T2.theme, COUNT(*) FROM singer_in_concert AS T1 JOIN concert AS T2 ON T1.concert_id = T2.concert_id GROUP BY T2.concert_id |
3,979 | <question>: What are the names , themes , and number of singers for every concert ? <context>: CREATE TABLE singer_in_concert (concert_id VARCHAR); CREATE TABLE concert (concert_name VARCHAR, theme VARCHAR, concert_id VARCHAR) <answer>: SELECT t2.concert_name, t2.theme, COUNT(*) FROM singer_in_concert AS t1 JOIN concert AS t2 ON t1.concert_id = t2.concert_id GROUP BY t2.concert_id |
3,980 | <question>: List singer names and number of concerts for each singer. <context>: CREATE TABLE singer_in_concert (singer_id VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR) <answer>: SELECT T2.name, COUNT(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id |
3,981 | <question>: List all singer names in concerts in year 2014. <context>: CREATE TABLE singer_in_concert (singer_id VARCHAR, concert_id VARCHAR); CREATE TABLE concert (concert_id VARCHAR, year VARCHAR); CREATE TABLE singer (name VARCHAR, singer_id VARCHAR) <answer>: SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014 |
3,982 | <question>: what is the name and nation of the singer who have a song having 'Hey' in its name? <context>: CREATE TABLE singer (name VARCHAR, country VARCHAR, song_name VARCHAR) <answer>: SELECT name, country FROM singer WHERE song_name LIKE '%Hey%' |
3,983 | <question>: Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015. <context>: CREATE TABLE stadium (name VARCHAR, location VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (stadium_id VARCHAR, Year VARCHAR) <answer>: SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name, T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015 |
3,984 | <question>: Find the number of concerts happened in the stadium with the highest capacity . <context>: CREATE TABLE concert (stadium_id VARCHAR, capacity VARCHAR); CREATE TABLE stadium (stadium_id VARCHAR, capacity VARCHAR) <answer>: SELECT COUNT(*) FROM concert WHERE stadium_id = (SELECT stadium_id FROM stadium ORDER BY capacity DESC LIMIT 1) |
3,985 | <question>: Find the number of pets whose weight is heavier than 10. <context>: CREATE TABLE pets (weight INTEGER) <answer>: SELECT COUNT(*) FROM pets WHERE weight > 10 |
3,986 | <question>: Find the weight of the youngest dog. <context>: CREATE TABLE pets (weight VARCHAR, pet_age VARCHAR) <answer>: SELECT weight FROM pets ORDER BY pet_age LIMIT 1 |
3,987 | <question>: Find the maximum weight for each type of pet. List the maximum weight and pet type. <context>: CREATE TABLE pets (petType VARCHAR, weight INTEGER) <answer>: SELECT MAX(weight), petType FROM pets GROUP BY petType |
3,988 | <question>: Find number of pets owned by students who are older than 20. <context>: CREATE TABLE student (stuid VARCHAR, age INTEGER); CREATE TABLE has_pet (stuid VARCHAR) <answer>: SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20 |
3,989 | <question>: Find the number of dog pets that are raised by female students (with sex F). <context>: CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR, sex VARCHAR) <answer>: SELECT COUNT(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog' |
3,990 | <question>: Find the number of distinct type of pets. <context>: CREATE TABLE pets (pettype VARCHAR) <answer>: SELECT COUNT(DISTINCT pettype) FROM pets |
3,991 | <question>: Find the first name of students who have cat or dog pet. <context>: CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR) <answer>: SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog' |
3,992 | <question>: Find the first name of students who have both cat and dog pets . <context>: CREATE TABLE student (fname VARCHAR, stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR) <answer>: SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'cat' INTERSECT SELECT t1.fname FROM student AS t1 JOIN has_pet AS t2 ON t1.stuid = t2.stuid JOIN pets AS t3 ON t3.petid = t2.petid WHERE t3.pettype = 'dog' |
3,993 | <question>: What are the students' first names who have both cats and dogs as pets? <context>: CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (Fname VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR) <answer>: SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' INTERSECT SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' |
3,994 | <question>: Find the major and age of students who do not have a cat pet. <context>: CREATE TABLE student (stuid VARCHAR); CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (major VARCHAR, age VARCHAR, stuid VARCHAR) <answer>: SELECT major, age FROM student WHERE NOT stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat') |
3,995 | <question>: Find the id of students who do not have a cat pet. <context>: CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR); CREATE TABLE student (stuid VARCHAR) <answer>: SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' |
3,996 | <question>: Find the first name and age of students who have a dog but do not have a cat as a pet. <context>: CREATE TABLE has_pet (stuid VARCHAR, petid VARCHAR); CREATE TABLE student (fname VARCHAR, age VARCHAR, stuid VARCHAR); CREATE TABLE pets (petid VARCHAR, pettype VARCHAR) <answer>: SELECT T1.fname, T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND NOT T1.stuid IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat') |
3,997 | <question>: Find the type and weight of the youngest pet. <context>: CREATE TABLE pets (pettype VARCHAR, weight VARCHAR, pet_age VARCHAR) <answer>: SELECT pettype, weight FROM pets ORDER BY pet_age LIMIT 1 |
3,998 | <question>: Find the id and weight of all pets whose age is older than 1. <context>: CREATE TABLE pets (petid VARCHAR, weight VARCHAR, pet_age INTEGER) <answer>: SELECT petid, weight FROM pets WHERE pet_age > 1 |
3,999 | <question>: Find the average and maximum age for each type of pet. <context>: CREATE TABLE pets (pettype VARCHAR, pet_age INTEGER) <answer>: SELECT AVG(pet_age), MAX(pet_age), pettype FROM pets GROUP BY pettype |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.