sentence
stringlengths 3
347
| sql
stringlengths 18
804
|
---|---|
Find the customer who made the highest payment in 2005. | 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 |
How many employees do we have? | SELECT count(*) FROM Employees; |
What is the difference in the number of employees from the UK and the USA who work as sales representatives? | SELECT ( SELECT COUNT(Title) FROM Employees WHERE Country = 'UK' AND Title = 'Sales Representative' ) - ( SELECT COUNT(Title) FROM Employees WHERE Country = 'USA' AND Title = 'Sales Representative' ) AS DIFFERENCE |
Find the names of all the catalog entries. | SELECT distinct(catalog_entry_name) FROM catalog_contents |
how many Invoices there | SELECT count ( * ) FROM INVOICES |
What was the record when the high rebounds was david lee (8) | SELECT record FROM table_23248869_8 WHERE high_rebounds = "David Lee (8)" |
What is the salary of the instructor with id number 22591? | SELECT salary FROM instructor WHERE id = 22591 |
How many times have Central Crossing won the OCC Championship? | SELECT SUM(occ_championships) FROM table_name_96 WHERE school = "central crossing" |
Show me all the wine names made in the year 2006. | SELECT Name FROM WINE WHERE YEAR = 2006 |
What is the highest November date that has a game under 19 and opponents of the Minnesota North Stars? | SELECT MAX(november) FROM table_name_11 WHERE game < 19 AND opponent = "minnesota north stars" |
Please list the IDs of all the trains that run in the east direction and have less than 4 cars. | SELECT T1.id FROM trains AS T1 INNER JOIN ( SELECT train_id, MAX(position) AS carsNum FROM cars GROUP BY train_id ) AS T2 ON T1.id = T2.train_id WHERE T1.direction = 'east' AND T2.carsNum < 4 |
Hi there! Can you show me the name of the architect who built the most mills? | SELECT T1.name FROM architect AS T1 JOIN mill AS T2 ON T1.id = T2.architect_id GROUP BY T1.id ORDER BY count ( * ) DESC LIMIT 1 |
How many times was the # of total votes 2582322? | SELECT COUNT(_number_of_seats_won) FROM table_123462_2 WHERE _number_of_total_votes = 2582322 |
What is the rate of 17 years? | SELECT rate FROM table_name_55 WHERE year = "17 years" |
How many employees does each role have? List role description, id and number of employees. | SELECT T1.role_description, T2.role_code, COUNT(*) FROM ROLES AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code GROUP BY T2.role_code |
What is the name of the non-mammal who has tatarinov as the author? | SELECT name FROM table_name_4 WHERE authors = "tatarinov" |
What is Event, when Winning Driver is "Laurent Aiello Laurent Aiello", when Round is greater than 1, and when Circuit is "Wunstorf"? | SELECT event FROM table_name_29 WHERE winning_driver = "laurent aiello laurent aiello" AND round > 1 AND circuit = "wunstorf" |
What is the nationality of the player who was previously with the Detroit Pistons? | SELECT nationality FROM table_name_55 WHERE previous_team = "detroit pistons" |
List Aerosmith's albums. | SELECT T1.title FROM albums AS T1 JOIN artists AS T2 ON T1.artist_id = T2.id WHERE T2.name = "Aerosmith"; |
Which African countries have a smaller population than that of any country in Asia? | SELECT Name FROM country WHERE Continent = "Africa" AND population < (SELECT min(population) FROM country WHERE Continent = "Asia") |
What are the numbers of all flights coming from Los Angeles? | SELECT flno FROM Flight WHERE origin = "Los Angeles" |
Find the average age of losers and winners of all matches. | SELECT AVG(loser_age), AVG(winner_age) FROM matches |
Show publishers that have more than one publication. | SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 |
What is every position for the CFL Edmonton? | SELECT position FROM table_28059992_1 WHERE cfl_team = "Edmonton" |
Which Sub-Parish (Sogn) is in the Parish (Prestegjeld) of hafslo parish and is located in the Church of Urnes? | SELECT sub_parish__sogn_ FROM table_name_52 WHERE parish__prestegjeld_ = "hafslo parish" AND location_of_the_church = "urnes" |
How tall is the building with 36 floors? | SELECT height__m_ FROM table_23759976_1 WHERE floors = 36 |
Which Video has a Channel of 25.3? | SELECT video FROM table_name_49 WHERE channel = 25.3 |
What is the home team score when they played at Victoria Park? | SELECT home_team AS score FROM table_name_7 WHERE venue = "victoria park" |
Hmm, I want to know the product names and the order quantities. | Did you mean the product details as product names? | Yes. | SELECT T1.product_details,T2.order_quantity from Products as T1 join Order_Items as T2 on T1.product_id = T2.product_id |
Find the name and capacity of products with price greater than 700 (in USD). | SELECT catalog_entry_name, capacity FROM Catalog_Contents WHERE price_in_dollars > 700 |
What was the 3’UTR sequence when Coding was 6a 3 and the GenBank id is nm_001093770.2? | SELECT 3 AS ’utr_sequence FROM table_name_64 WHERE coding = "6a 3" AND genbank_id = "nm_001093770.2" |
Round 3 with less than 54 for Round 4? | SELECT round_3 FROM table_name_69 WHERE round_4 = "54" |
What type of format was released after 1979? | SELECT release_format FROM table_name_48 WHERE release_date > 1979 |
Name the most female life expectancy for overall rank of 61 | SELECT MAX(female_life_expectancy) FROM table_2701625_1 WHERE overall_rank = 61 |
Name the product from the 'Classic Cars' production line that has the greatest expected profit. | 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 |
When birkenhead is the city/town and merseyside is the county and england is the country how many ranks are there? | SELECT COUNT(rank) FROM table_23248420_1 WHERE country = "England" AND county = "Merseyside" AND city_town = "Birkenhead" |
Name the most obama number for mccain being 38.86% | SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = "38.86%" |
what is the total balance of customers whose credit score is above 100 | SELECT sum ( acc_bal ) FROM customer WHERE credit_score > 100 GROUP BY state |
Which opponent was playing on December 20, 1998? | SELECT opponent FROM table_name_63 WHERE date = "december 20, 1998" |
Find the person who has exactly one friend. | SELECT name FROM PersonFriend GROUP BY name HAVING COUNT(*) = 1 |
What are all the dates of enrollment and completion in record? | SELECT date_of_enrolment , date_of_completion FROM Student_Course_Enrolment |
Please provide the number of forks that the repository of the solution 35 have. | SELECT T1.Forks FROM Repo AS T1 INNER JOIN Solution AS T2 ON T1.Id = T2.RepoId WHERE T2.Id = 35 |
Name the bush% for where others # is 90 | SELECT bush_percentage FROM table_1733457_1 WHERE others_number = 90 |
Among the schools' projects whose donation didn't use account credits redemption,how many schools are public magnet schools? | SELECT COUNT(T1.schoolid) FROM projects AS T1 INNER JOIN donations AS T2 ON T1.projectid = T2.projectid WHERE T1.school_magnet = 't' AND T2.payment_included_acct_credit = 'f' |
Who was the visitor on March 17? | SELECT visitor FROM table_name_53 WHERE date = "march 17" |
what's the won with points for being 643 | SELECT won FROM table_14058433_5 WHERE points_for = "643" |
List all song names by singers above the average age. | SELECT song_name FROM singer WHERE age > (SELECT avg(age) FROM singer) |
What was the location and how many attended when Golden State played? | SELECT location_attendance FROM table_22883210_9 WHERE team = "Golden State" |
In which city live the most staff? List the city name and number of staff. | SELECT T1.city , count(*) FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id GROUP BY T1.city ORDER BY count(*) DESC LIMIT 1; |
Which Team 1, has Team 2, Slovan Liberec? | SELECT team_1 FROM table_name_13 WHERE team_2 = "slovan liberec" |
List down the languages of the countries that have population below 8000. | SELECT T2.Language FROM Country AS T1 INNER JOIN CountryLanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Population < 8000 |
What is the quantity made of the locomotive with a Waterford class? | SELECT quantity_made FROM table_name_67 WHERE class = "waterford" |
If the population is 1858, what is the maximum ansi code? | SELECT MAX(ansi_code) FROM table_18600760_7 WHERE pop__2010_ = 1858 |
WHAT IS THE HIGHEST # OF CARS WITH A START YEAR LESS THAN 2012, TBA CURRENT CAR, AND MORE THAN 1 CAR? | SELECT MAX(number_of_cars) FROM table_name_95 WHERE year_started < 2012 AND current_car = "tba" AND car__number > 1 |
Show all product names and the total quantity ordered for each product name. | SELECT T2.product_name , sum(T1.product_quantity) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id GROUP BY T2.product_name |
Under what classification do the papers that cited word1163 belong? | SELECT DISTINCT T1.class_label FROM paper AS T1 INNER JOIN content AS T2 ON T1.paper_id = T2.paper_id WHERE T2.word_cited_id = 'word1163' |
In which city is the station licensed whose frequency MHz is higher than 102.3 and the ERP W is lower than 1,000? | SELECT city_of_license FROM table_name_60 WHERE frequency_mhz = 102.3 AND erp_w < 1 OFFSET 000 |
WHAT TEAM CLASSIFIED IN THE STAGE WHERE BRADLEY WIGGINS WON THE POINTS CLASSIFICATION ? | SELECT team_classification FROM table_11667521_17 WHERE points_classification = "Bradley Wiggins" |
Provide the ingredients that are rationed in the recipe with the highest carbohydrate content. | SELECT T1.name FROM Ingredient AS T1 INNER JOIN Quantity AS T2 ON T1.ingredient_id = T2.ingredient_id INNER JOIN Nutrition AS T3 ON T3.recipe_id = T2.recipe_id WHERE T2.max_qty = T2.min_qty ORDER BY T3.carbo DESC LIMIT 1 |
What is the number of points for east germany, and a Places of 88? | SELECT SUM(points) FROM table_name_84 WHERE nation = "east germany" AND places = "88" |
What is the elevation of the city with the alias East Longmeadow? | SELECT T2.elevation FROM alias AS T1 INNER JOIN zip_data AS T2 ON T1.zip_code = T2.zip_code WHERE T1.alias = 'East Longmeadow' |
What are the dates for apartment 585 ? | Did you mean the booking start and end dates of the apartments with id 585? | Yes | SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE t2.apt_number = "Apt. 585" |
How many teachers are there? | select count ( teacher_id ) from Teachers |
What was the original airdate for the episode written by daisuke habara and directed by akimitsu sasaki | SELECT original_airdate FROM table_29039942_1 WHERE writer = "Daisuke Habara" AND director = "Akimitsu Sasaki" |
What is the Language when the Reteconomy is the television service? | SELECT language FROM table_name_86 WHERE television_service = "reteconomy" |
How many persons are not body builders? | SELECT count(*) FROM people WHERE people_id NOT IN (SELECT People_ID FROM body_builder) |
What is the record when the opponent is washington redskins? | SELECT record FROM table_18847692_2 WHERE opponent = "Washington Redskins" |
What is the national share of Guizhou's administrative division? | SELECT national_share___percentage_ FROM table_171666_1 WHERE administrative_division = "Guizhou" |
Tell the origin country of car no.382. | SELECT DISTINCT T2.country FROM production AS T1 INNER JOIN country AS T2 ON T1.country = T2.origin WHERE T1.ID = 382 |
What is the name of the country when the television service is italia 1? | SELECT country FROM table_name_95 WHERE television_service = "italia 1" |
What launched has mariner 4 as the spacecraft? | SELECT launched FROM table_name_17 WHERE spacecraft = "mariner 4" |
What Score has a Home of Montreal Canadiens and a Date of April 22? | SELECT score FROM table_name_74 WHERE home = "montreal canadiens" AND date = "april 22" |
How many Winners have a Third of 1, and Runners-up smaller than 0? | SELECT COUNT(winners) FROM table_name_27 WHERE third = 1 AND runners_up < 0 |
what is the competition name when the age group is 17 or younger for athletics? | SELECT competition_name FROM table_name_42 WHERE age_groups = "17 or younger" AND sport = "athletics" |
What is the finish of the year with start 5? | SELECT finish FROM table_name_42 WHERE start = "5" |
Name the number of gn divisions for mannar | SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar" |
What ship was built in 2012? | SELECT ship FROM table_name_79 WHERE built = 2012 |
Where did Melbourne play as the home team? | SELECT venue FROM table_name_38 WHERE home_team = "melbourne" |
What was the record after the game against the Houston Oilers? | SELECT record FROM table_name_98 WHERE opponent = "houston oilers" |
What are the different ids and names of the stations that have had more than 12 bikes available? | SELECT DISTINCT T1.id , T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 12 |
When the home team was Woking, what was the tie no? | SELECT tie_no FROM table_name_12 WHERE home_team = "woking" |
How many 7-star votes in star score did the episode Lost Verizon have? | SELECT COUNT(*) FROM Episode AS T1 INNER JOIN Vote AS T2 ON T2.episode_id = T1.episode_id WHERE T1.title = 'Lost Verizon' AND T2.stars = 7; |
What is minimum age for different job title? | SELECT min(age) , job FROM Person GROUP BY job |
Which Decision has a Visitor of vancouver, and a Score of 5 – 4? | SELECT decision FROM table_name_4 WHERE visitor = "vancouver" AND score = "5 – 4" |
What is the average weeks on top of volumes associated with the artist aged 25 or younger? | SELECT AVG(T2.Weeks_on_Top) FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.age <= 25 |
How many customers don't have an account? | SELECT count(*) FROM Customers WHERE customer_id NOT IN (SELECT customer_id FROM Accounts) |
Hello, which complaint id has more than 3 records present on this list? | SELECT complaint_id FROM complaints GROUP BY complaint_id HAVING count ( * ) > 3 |
On which date is there a performance of more than 8.22.72? | SELECT date FROM table_name_9 WHERE performance = "8.22.72" |
How many sales orders did the salesperson David R. Campbell create? | SELECT COUNT(T2.TotalDue) FROM Person AS T1 INNER JOIN SalesOrderHeader AS T2 ON T1.ModifiedDate = T2.DueDate WHERE T1.FirstName = 'David' AND T1.MiddleName = 'R' AND T1.LastName = 'Campbell' AND T1.PersonType = 'SP' |
Show the names of people and the number of times they have been on the affirmative side of debates. | SELECT T2.Name , COUNT(*) FROM debate_people AS T1 JOIN people AS T2 ON T1.Affirmative = T2.People_ID GROUP BY T2.Name |
Which name has a License of gpl, and a Platform of windows? | SELECT name FROM table_name_47 WHERE license = "gpl" AND platform = "windows" |
What are the minimum, average, and maximum quantities ordered? Check all the invoices. | SELECT min(Order_Quantity) , avg(Order_Quantity) , max(Order_Quantity) FROM INVOICES |
What is Team, when Qual 1 is 1:16.417? | SELECT team FROM table_name_65 WHERE qual_1 = "1:16.417" |
Which sign has a modern house title of House of Partnerships? | SELECT sign FROM table_name_50 WHERE modern_title_of_house = "house of partnerships" |
Where was the game played that started at 7:00 p.m.? | SELECT game_site FROM table_24396664_2 WHERE kickoff = "7:00 p.m." |
What is the average price of products with more than fifty units in stock? | SELECT SUM(UnitPrice) / COUNT(UnitPrice) FROM Products WHERE UnitsInStock > 50 |
Return the country codes for countries that do not speak English. | SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = "English" |
What are the names of all the games that have been played for at least 1000 hours? | SELECT gname FROM Plays_games AS T1 JOIN Video_games AS T2 ON T1.gameid = T2.gameid GROUP BY T1.gameid HAVING sum(hours_played) >= 1000 |
Show the total number of rooms of all apartments with facility code "Gym". | SELECT sum(T2.room_count) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.facility_code = "Gym" |
Name who directed the episode for the series number 236 | SELECT directed_by FROM table_17356042_1 WHERE series__number = 236 |
Subsets and Splits