sentence
stringlengths
3
347
sql
stringlengths
18
804
How many captains when the shirt sponsor is toshiba?
SELECT COUNT(captain) FROM table_27631756_2 WHERE shirt_sponsor = "Toshiba"
Show the credit card number of Lisa Ling.
SELECT DISTINCT T2.CreditCardNumber FROM customers AS T1 INNER JOIN `transaction` AS T2 ON T1.CustomerID = T2.CustomerID WHERE T1.First = 'Lisa' AND T1.Last = 'Ling'
Hello, what is the total number of bookings?
SELECT COUNT ( * ) FROM BOOKINGS
What is the name of the player in position lb and an overall of 128?
SELECT player FROM table_name_65 WHERE position = "lb" AND overall = 128
What is the rank when the col is larger than 0?
SELECT COUNT(rank) FROM table_name_7 WHERE col__m_ > 0
List the builders of railways in ascending alphabetical order.
SELECT Builder FROM railway ORDER BY Builder ASC
How many legislators are not senator?
SELECT COUNT(bioguide) FROM `current-terms` WHERE class IS NULL
How many historical legislators were born in 1973?
SELECT COUNT(*) FROM historical WHERE CAST(birthday_bio AS date) = 1973
Which young classification has general classification of Christian Vande Velde for Team Columbia and Mark Cavendish?
SELECT young_classification FROM table_name_26 WHERE general_classification = "christian vande velde" AND team_classification = "team columbia" AND sprint_classification = "mark cavendish"
Which of those documents is the oldest? | which kind of information the oldest documents do you want me to give you? | Give me the document name from those documents that has the earliest document date.
SELECT document_name FROM Documents AS T1 JOIN projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'Graph Database project' order by document_date limit 1
What was the highest points when the second was 4?
SELECT MAX(points) FROM table_name_12 WHERE second = "4"
who is the the pole position with date being august 10
SELECT pole_position FROM table_14638077_2 WHERE date = "August 10"
How many ranks have more than 7 lanes, and an Athlete of michael mathieu, and a Reaction time larger than 0.203?
SELECT SUM(rank) FROM table_name_3 WHERE lane > 7 AND athlete = "michael mathieu" AND react > 0.203
Who are the players that have names containing the letter a?
SELECT DISTINCT pName FROM Player WHERE pName LIKE '%a%'
list the name of the colleges whose enrollment is greater than 12000 sorted by the college's name and state?
SELECT cName FROM College WHERE enr > 12000 ORDER BY cName , state
When was the event in Dublin?
SELECT date FROM table_name_50 WHERE city = "dublin"
What director has 2004-03-31 as the release date, with daffy (as duck dodgers) as the character?
SELECT director FROM table_name_93 WHERE release_date = "2004-03-31" AND characters = "daffy (as duck dodgers)"
Name the original title for the last metro
SELECT original_title FROM table_18987377_1 WHERE film_title_used_in_nomination = "The Last Metro"
Which country is the oldest player from?
SELECT T1.Country_Name FROM Country AS T1 INNER JOIN Player AS T2 ON T2.Country_Name = T1.Country_Id WHERE T2.Country_Name IS NOT NULL ORDER BY T2.DOB LIMIT 1
What is the division where the result was 0–2?
SELECT division FROM table_27274566_2 WHERE result = "0–2"
What is the language of the method used in the solution path "opendns_diagnosticapp\windows\OpenDnsDiagnostic.sln"?
SELECT T2.Lang FROM Solution AS T1 INNER JOIN Method AS T2 ON T1.Id = T2.SolutionId WHERE T1.Path = 'opendns_diagnosticappwindowsOpenDnsDiagnostic.sln'
How many transaction does each account have? Show the number and account id.
SELECT count(*) , account_id FROM Financial_transactions
Name the number of administrative county for area 1961 and 176694
SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694
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'
How many Men's 200 Metres Freestyle events did Ian James Thorpe compete in?
SELECT COUNT(T1.id) FROM person AS T1 INNER JOIN games_competitor AS T2 ON T1.id = T2.person_id INNER JOIN competitor_event AS T3 ON T2.id = T3.competitor_id INNER JOIN event AS T4 ON T3.event_id = T4.id WHERE T1.full_name = 'Ian James Thorpe' AND T4.event_name LIKE 'Swimming Men%s 200 metres Freestyle'
what is the least booked count
SELECT MIN ( booked_count ) FROM Products_Booked
What was the attendance for the North Melbourne's home game?
SELECT crowd FROM table_name_31 WHERE home_team = "north melbourne"
How much does the coin with a 14mm diameter weigh?
SELECT weight FROM table_name_52 WHERE diameter = "14mm"
What is the height of mountain Dhaulagiri located and in which province is it located?
SELECT T1.Height, T2.Province FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain WHERE T1.Name = 'Dhaulagiri'
If the Away team is north melbourne, what's the Home team score?
SELECT home_team AS score FROM table_name_18 WHERE away_team = "north melbourne"
What is minimum and maximum share of TV series?
SELECT MAX(SHARE), MIN(SHARE) FROM TV_series
What are the three largest cities in terms of regional population?
SELECT city FROM city ORDER BY regional_population DESC LIMIT 3
Show the name and phone of the customer without any mailshot.
SELECT customer_name , customer_phone FROM customers WHERE customer_id NOT IN (SELECT customer_id FROM mailshot_customers)
What year has a Schwante smaller than 2.043, an Eichstädt smaller than 848, and a Bärenklau smaller than 1.262?
SELECT COUNT(year) FROM table_name_30 WHERE schwante < 2.043 AND eichstädt < 848 AND bärenklau < 1.262
What engine was used by Equipe Simca Gordini before 1956 with less than 4 points?
SELECT engine FROM table_name_15 WHERE year < 1956 AND points < 4 AND entrant = "equipe simca gordini"
What is the country with a 70-74-69=213 score?
SELECT country FROM table_name_65 WHERE score = 70 - 74 - 69 = 213
Which To par is of thomas aiken?
SELECT to_par FROM table_name_77 WHERE player = "thomas aiken"
What was the album Closer: The Best of Sarah Mclachlan certified as?
SELECT certification FROM table_name_88 WHERE album = "closer: the best of sarah mclachlan"
In which city the 2004 Summer was held?
SELECT T2.city_name FROM games_city AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.id INNER JOIN games AS T3 ON T1.games_id = T3.id WHERE T3.games_name = '2004 Summer'
Who is the hero character of the movie whose total gross was $222,527,828?
SELECT T1.hero FROM characters AS T1 INNER JOIN movies_total_gross AS T2 ON T2.movie_title = T1.movie_title WHERE T2.total_gross = '$222,527,828'
Can you also show me the total number of instructers? | what did you mean by instructers? can you give more info? | Sorry, I meant instructors
SELECT count ( i_ID ) from advisor
What point had team Lotus whit the lotus 33 chassis in 1964?
SELECT points FROM table_name_66 WHERE chassis = "lotus 33" AND entrant = "team lotus" AND year = 1964
What is the total number of byes that has 13 losses and wins less than 5?
SELECT COUNT(byes) FROM table_name_41 WHERE losses = 13 AND wins < 5
Provide the number of credits, category, role and birthplace of the crew member who was born in North Korea.
SELECT DISTINCT T2.credited, T2.category, T2.role, T1.birth_place FROM Person AS T1 INNER JOIN Credit AS T2 ON T1.name = T2.person WHERE T1.birth_country = 'North Korea';
How much Lost has a Drawn larger than 5, and a Played larger than 18?
SELECT SUM(lost) FROM table_name_78 WHERE drawn > 5 AND played > 18
who is the opponent on 18 january 1993?
SELECT opponent FROM table_name_23 WHERE date = "18 january 1993"
What's the ratings of TBS of Episode 10 and had a Japanese title of Scandal?
SELECT average_ratings FROM table_name_76 WHERE tv_station = "tbs" AND episodes = "10" AND japanese_title = "scandal"
On which date was the venue of vfl park used?
SELECT date FROM table_name_37 WHERE venue = "vfl park"
Name the directed by for production code for 3t7509
SELECT directed_by FROM table_19396259_1 WHERE production_code = "3T7509"
Please state the district name where incident number JB106545 took place.
SELECT T1.case_number FROM Crime AS T1 INNER JOIN FBI_Code AS T2 ON T1.fbi_code_no = T2.fbi_code_no WHERE T2.title = 'Criminal Sexual Assault' AND T2.crime_against = 'Persons' AND T1.arrest = 'TRUE' LIMIT 3
which students are female? | Do you want the ids of students who are female? | yes
SELECT StuID FROM Student WHERE sex = 'F'
Name the aircraft type for jagdgeschwader 6
SELECT aircraft_type FROM table_28342423_1 WHERE parent_unit = "Jagdgeschwader 6"
Which Prime Minister's served a term of 344 days?
SELECT Prime AS minister FROM table_name_68 WHERE term_in_office = "344 days"
Show the names of editors that are on at least two journal committees.
SELECT T1.Name FROM editor AS T1 JOIN journal_committee AS T2 ON T1.Editor_ID = T2.Editor_ID GROUP BY T1.Name HAVING COUNT(*) >= 2
What is the low win total for players ranked below 4?
SELECT MIN(wins) FROM table_name_17 WHERE rank > 4
Which constructor has a Time/Retired of +37.311?
SELECT constructor FROM table_name_91 WHERE time_retired = "+37.311"
Find the titles of items that received any rating below 5.
SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating < 5
What are the country id of Hades 360?
SELECT Country_ID FROM roller_coaster WHERE Name = "Hades 360"
Okay. Sorry about that. Can you please list all of the customer IDs for which the customer has more than one card?
SELECT customer_id FROM Customers_cards GROUP BY customer_id having count ( * ) >1
What is the percentage of coaches in 1969 who were awarded "NBA Coach of the Year"?
SELECT CAST(SUM(CASE WHEN award = 'NBA Coach of the Year' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(*) FROM awards_coaches WHERE year = 1969
How many countries does each continent have? List the continent id, continent name and the number of countries.
SELECT T1.ContId , T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId;
What percentage of orders were placed by customers in Madrid city in 1996?
SELECT CAST(COUNT(CASE WHEN T1.City = 'Madrid' THEN 1 ELSE NULL END) AS REAL) * 100 / COUNT(T1.City) FROM Customers AS T1 INNER JOIN Orders AS T2 ON T1.CustomerID = T2.CustomerID WHERE STRFTIME('%Y', T2.OrderDate) = 1996
Name the away team score for lake oval
SELECT away_team AS score FROM table_name_1 WHERE venue = "lake oval"
What is the sum of the losses that a match score larger than 26, a points score of 62, and a draw greater than 5?
SELECT SUM(lost) FROM table_name_6 WHERE matches > 26 AND points = 62 AND draw > 5
Name the 1821 with 1861 of 3733
SELECT 1821 FROM table_name_30 WHERE 1861 = "3733"
How many businesses operating in the "Accessories" category have received a "wonderful experience" review from users?
SELECT COUNT(T2.business_id) FROM Categories AS T1 INNER JOIN Business_Categories AS T2 ON T1.category_id = T2.category_id INNER JOIN Business AS T3 ON T2.business_id = T3.business_id WHERE T3.stars > 3 AND T1.category_name LIKE 'Accessories'
What is the Visitor on January 1?
SELECT visitor FROM table_name_58 WHERE date = "january 1"
How many students enrolled in class ACCT-211?
SELECT COUNT(*) FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code WHERE T1.crs_code = 'ACCT-211'
Which loss has an Attendance of 23,952?
SELECT loss FROM table_name_55 WHERE attendance = "23,952"
What is the Elmers End with a 09:54 Bingham Road?
SELECT elmers_end FROM table_name_65 WHERE bingham_road = "09:54"
Name the result with notes of quarter-finals and event of adcc 2001 absolute
SELECT result FROM table_name_65 WHERE notes = "quarter-finals" AND event = "adcc 2001 absolute"
What states have at least two representatives?
SELECT State FROM representative GROUP BY State HAVING COUNT(*) >= 2
what is the total number of goal different when the club is cf extremadura and the played is less than 38?
SELECT COUNT(goal_difference) FROM table_name_51 WHERE club = "cf extremadura" AND played < 38
What is the total number of second place finishes when the city & nation was Chicago, USA?
SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = "Chicago, USA"
How many accelerators are not compatible with the browsers listed ?
SELECT count(*) FROM web_client_accelerator WHERE id NOT IN ( SELECT accelerator_id FROM accelerator_compatible_browser );
Who is the most valuable player who played in the 2000-2001 season of the International league?
SELECT DISTINCT T2.PlayerName FROM SeasonStatus AS T1 INNER JOIN PlayerInfo AS T2 ON T1.ELITEID = T2.ELITEID WHERE T1.SEASON = '2000-2001' AND T1.LEAGUE = 'International' ORDER BY T1.P DESC LIMIT 1
What is the date when France is the opposing team?
SELECT date FROM table_name_50 WHERE opposing_teams = "france"
What was the Category after 1991 with a Score of 7-5, 6-7, 6-2?
SELECT category FROM table_name_90 WHERE year > 1991 AND score = "7-5, 6-7, 6-2"
What are the names of the captains that have classes?
select name from captain where class ! = 'NULL'
Can you show me which school is founded most recently?
SELECT * FROM university order by founded desc LIMIT 1
What is the attendance at the Dallas home game on may 12?
SELECT COUNT(attendance) FROM table_name_67 WHERE home = "dallas" AND date = "may 12"
Name the least population for 2002 for 2011 being 9564
SELECT MIN(population__2002_) FROM table_2562572_5 WHERE population__2011_ = 9564
Which runner-up placed in a year prior to 2006 and whose Champion was Elon?
SELECT runner_up FROM table_name_66 WHERE year < 2006 AND champion = "elon"
Find the country of all cities with post code starting with 4.
SELECT country FROM addresses WHERE zip_postcode LIKE "4%"
How many users belong to the same behavior category as comics?
SELECT COUNT(T2.app_id) FROM label_categories AS T1 INNER JOIN app_labels AS T2 ON T1.label_id = T2.label_id WHERE T1.category = 'comics'
What is the cost of 972 Min Press caused 52 death?
SELECT damage__millions_usd__ FROM table_name_36 WHERE min_press___mbar__ = "972" AND deaths = "52"
What's the total that the position is less than 1?
SELECT MIN(total) FROM table_name_31 WHERE position < 1
Which origin has most number of flights?
SELECT origin FROM Flight GROUP BY origin ORDER BY count(*) DESC LIMIT 1
How many products with the id "476" are stored in Metal Storage?
SELECT T2.Quantity FROM Location AS T1 INNER JOIN ProductInventory AS T2 ON T1.LocationID = T2.LocationID WHERE T2.ProductID = 476 AND T1.Name = 'Metal Storage'
List first name and last name of customers that have more than 2 payments.
SELECT T2.first_name , T2.last_name FROM Customer_Payments AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) > 2;
What was the discipline for the euroboss championship?
SELECT discipline FROM table_name_59 WHERE championship = "euroboss"
What is the lowest rank that has university park, pa as the location?
SELECT MIN(rank) FROM table_name_68 WHERE location = "university park, pa"
Which score has a Loss of gubicza (0-1)?
SELECT score FROM table_name_66 WHERE loss = "gubicza (0-1)"
Please list the top ten movies with the most price per day in descending order of price per day.
SELECT title FROM film ORDER BY rental_rate / rental_duration DESC LIMIT 10
What team has a player from Santa Clara?
SELECT team FROM table_name_82 WHERE college = "santa clara"
What score resulted in a winner after 2008?
SELECT score FROM table_name_18 WHERE outcome = "winner" AND year > 2008
What is the lowest rank of Gatwick Airport?
SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport"
What is K236AM's lowest frequency in MHz?
SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = "k236am"
For which location was the round smaller than 11 and the circuit streets of denver?
SELECT city_location FROM table_name_93 WHERE round < 11 AND circuit = "streets of denver"
What's the CSA/CMA Population in IA-IL?
SELECT MAX(csa_cma_2009_population) FROM table_name_89 WHERE state__province = "ia-il"