Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
56,500 | <question>: Which Nation has a Gold larger than 0, and a Bronze smaller than 2, and a Total larger than 3, and a Silver larger than 1? <context>: CREATE TABLE table_name_96 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT nation FROM table_name_96 WHERE gold > 0 AND bronze < 2 AND total > 3 AND silver > 1 |
56,501 | <question>: What is the round number when the record is 15–7–1? <context>: CREATE TABLE table_name_68 (round VARCHAR, record VARCHAR) | SELECT COUNT(round) FROM table_name_68 WHERE record = "15–7–1" |
56,502 | <question>: What is the method when the time is 5:00, and the record is 14–6–1? <context>: CREATE TABLE table_name_3 (method VARCHAR, time VARCHAR, record VARCHAR) | SELECT method FROM table_name_3 WHERE time = "5:00" AND record = "14–6–1" |
56,503 | <question>: What is the home team of the game with a price decision and the new jersey devils as the visitor team? <context>: CREATE TABLE table_name_51 (home VARCHAR, decision VARCHAR, visitor VARCHAR) | SELECT home FROM table_name_51 WHERE decision = "price" AND visitor = "new jersey devils" |
56,504 | <question>: What transfer fee did Birmingham City get on 30 June 2010? <context>: CREATE TABLE table_name_4 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR) | SELECT transfer_fee FROM table_name_4 WHERE ends = "30 june 2010" AND moving_from = "birmingham city" |
56,505 | <question>: What type of move was Elding from ENG? <context>: CREATE TABLE table_name_28 (type VARCHAR, country VARCHAR, name VARCHAR) | SELECT type FROM table_name_28 WHERE country = "eng" AND name = "elding" |
56,506 | <question>: When does Donaldson's move end? <context>: CREATE TABLE table_name_34 (ends VARCHAR, name VARCHAR) | SELECT ends FROM table_name_34 WHERE name = "donaldson" |
56,507 | <question>: Which Silver has a Total of 7, and a Gold larger than 1? <context>: CREATE TABLE table_name_10 (silver INTEGER, total VARCHAR, gold VARCHAR) | SELECT AVG(silver) FROM table_name_10 WHERE total = 7 AND gold > 1 |
56,508 | <question>: Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy? <context>: CREATE TABLE table_name_97 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT AVG(bronze) FROM table_name_97 WHERE gold < 16 AND rank = "10" AND nation = "italy" |
56,509 | <question>: Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13? <context>: CREATE TABLE table_name_27 (total INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR) | SELECT AVG(total) FROM table_name_27 WHERE bronze > 2 AND gold < 16 AND silver = 0 AND rank = "13" |
56,510 | <question>: Which Gold has a Nation of malaysia, and a Silver smaller than 0? <context>: CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, silver VARCHAR) | SELECT MIN(gold) FROM table_name_47 WHERE nation = "malaysia" AND silver < 0 |
56,511 | <question>: Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰? <context>: CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHAR, infant_mortality__2002_ VARCHAR) | SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = "90%" AND infant_mortality__2002_ = "18.3‰" |
56,512 | <question>: Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300? <context>: CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR) | SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300 |
56,513 | <question>: Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima? <context>: CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER, area__km²_ VARCHAR, state VARCHAR) | SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km²_ > 148825.6 AND state = "roraima" |
56,514 | <question>: Which Literacy (2003) has an HDI (2005) smaller than 0.718, and a GDP per capita (US$) (2004) smaller than 3877, and a State of maranhão? <context>: CREATE TABLE table_name_8 (literacy__2003_ VARCHAR, state VARCHAR, hdi__2005_ VARCHAR, gdp_per_capita__us$___2004_ VARCHAR) | SELECT literacy__2003_ FROM table_name_8 WHERE hdi__2005_ < 0.718 AND gdp_per_capita__us$___2004_ < 3877 AND state = "maranhão" |
56,515 | <question>: Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5? <context>: CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km²_ VARCHAR) | SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = "90%" AND area__km²_ = 1247689.5 |
56,516 | <question>: Name the Date and an Opponent which has a f Position and Career Games of 123 games? <context>: CREATE TABLE table_name_4 (date_and_opponent VARCHAR, position VARCHAR, career_games VARCHAR) | SELECT date_and_opponent FROM table_name_4 WHERE position = "f" AND career_games = "123 games" |
56,517 | <question>: Which Name has a Years Played of 2004–2008, and a Date and Opponent of 2/17/07 vs. purdue? <context>: CREATE TABLE table_name_34 (name VARCHAR, years_played VARCHAR, date_and_opponent VARCHAR) | SELECT name FROM table_name_34 WHERE years_played = "2004–2008" AND date_and_opponent = "2/17/07 vs. purdue" |
56,518 | <question>: Which Career Games has a Date and Opponent of 12/15/92 vs. uw–milwaukee? <context>: CREATE TABLE table_name_58 (career_games VARCHAR, date_and_opponent VARCHAR) | SELECT career_games FROM table_name_58 WHERE date_and_opponent = "12/15/92 vs. uw–milwaukee" |
56,519 | <question>: WHich Scored 1,500 Points has a Years Played of 2004–2008 and a Name of jolene anderson? <context>: CREATE TABLE table_name_34 (scored_1 VARCHAR, years_played VARCHAR, name VARCHAR) | SELECT scored_1, 500 AS _points FROM table_name_34 WHERE years_played = "2004–2008" AND name = "jolene anderson" |
56,520 | <question>: Which Time has a Round smaller than 3, and an Opponent of bao quach? <context>: CREATE TABLE table_name_11 (time VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_11 WHERE round < 3 AND opponent = "bao quach" |
56,521 | <question>: Which Round has a Record of 10-6? <context>: CREATE TABLE table_name_20 (round INTEGER, record VARCHAR) | SELECT MIN(round) FROM table_name_20 WHERE record = "10-6" |
56,522 | <question>: Which Opponent has a Round smaller than 3, and a Time of 1:09? <context>: CREATE TABLE table_name_48 (opponent VARCHAR, round VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_48 WHERE round < 3 AND time = "1:09" |
56,523 | <question>: Which Time has an Opponent of josh branham? <context>: CREATE TABLE table_name_3 (time VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_3 WHERE opponent = "josh branham" |
56,524 | <question>: Which Time has a Round larger than 2, and an Opponent of jesse brock? <context>: CREATE TABLE table_name_96 (time VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_96 WHERE round > 2 AND opponent = "jesse brock" |
56,525 | <question>: Which Round has an Event of nle - capital city carnage? <context>: CREATE TABLE table_name_36 (round VARCHAR, event VARCHAR) | SELECT round FROM table_name_36 WHERE event = "nle - capital city carnage" |
56,526 | <question>: Which Round has an Opponent of ryan bixler? <context>: CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR) | SELECT round FROM table_name_6 WHERE opponent = "ryan bixler" |
56,527 | <question>: Which Event has a Record of 19-9? <context>: CREATE TABLE table_name_47 (event VARCHAR, record VARCHAR) | SELECT event FROM table_name_47 WHERE record = "19-9" |
56,528 | <question>: Which Method has a Round of 1, and a Record of 4–2? <context>: CREATE TABLE table_name_37 (method VARCHAR, round VARCHAR, record VARCHAR) | SELECT method FROM table_name_37 WHERE round = 1 AND record = "4–2" |
56,529 | <question>: Which Opponent has a Time of 4:51? <context>: CREATE TABLE table_name_84 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_84 WHERE time = "4:51" |
56,530 | <question>: Which Round has an Opponent of jorge magalhaes? <context>: CREATE TABLE table_name_83 (round INTEGER, opponent VARCHAR) | SELECT AVG(round) FROM table_name_83 WHERE opponent = "jorge magalhaes" |
56,531 | <question>: Which Round has a Location of bahia, brazil? <context>: CREATE TABLE table_name_52 (round INTEGER, location VARCHAR) | SELECT AVG(round) FROM table_name_52 WHERE location = "bahia, brazil" |
56,532 | <question>: Which Opponent has an Event of jungle fight 5? <context>: CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_2 WHERE event = "jungle fight 5" |
56,533 | <question>: Tiger Woods with a total less than 293 had what To par? <context>: CREATE TABLE table_name_73 (to_par VARCHAR, total VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_73 WHERE total < 293 AND player = "tiger woods" |
56,534 | <question>: Bernhard Langer maximum total was what? <context>: CREATE TABLE table_name_27 (total INTEGER, player VARCHAR) | SELECT MAX(total) FROM table_name_27 WHERE player = "bernhard langer" |
56,535 | <question>: What is the average of the total when t11 is the finish? <context>: CREATE TABLE table_name_39 (total INTEGER, finish VARCHAR) | SELECT AVG(total) FROM table_name_39 WHERE finish = "t11" |
56,536 | <question>: Which Rider has Laps smaller than 24, and a Grid smaller than 12, and a Manufacturer of aprilia? <context>: CREATE TABLE table_name_89 (rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT rider FROM table_name_89 WHERE laps < 24 AND grid < 12 AND manufacturer = "aprilia" |
56,537 | <question>: What were grid 7's laps? <context>: CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR) | SELECT MIN(laps) FROM table_name_72 WHERE grid = 7 |
56,538 | <question>: Which Time/Retired has Laps smaller than 24, and a Manufacturer of aprilia, and a Grid smaller than 12, and a Rider of ángel rodríguez? <context>: CREATE TABLE table_name_5 (time_retired VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR) | SELECT time_retired FROM table_name_5 WHERE laps < 24 AND manufacturer = "aprilia" AND grid < 12 AND rider = "ángel rodríguez" |
56,539 | <question>: How many Laps have a Time/Retired of +1:42.517, and a Grid larger than 33? <context>: CREATE TABLE table_name_67 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_67 WHERE time_retired = "+1:42.517" AND grid > 33 |
56,540 | <question>: Which chassis-engine had 77 laps? <context>: CREATE TABLE table_name_9 (chassis___engine VARCHAR, laps VARCHAR) | SELECT chassis___engine FROM table_name_9 WHERE laps = 77 |
56,541 | <question>: What is the class of team liqui moly equipe, which has less than 71 laps? <context>: CREATE TABLE table_name_85 (class VARCHAR, laps VARCHAR, team VARCHAR) | SELECT class FROM table_name_85 WHERE laps < 71 AND team = "liqui moly equipe" |
56,542 | <question>: What is the team of driver klaus ludwig, who is class c1 and has more than 77 laps? <context>: CREATE TABLE table_name_15 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR) | SELECT team FROM table_name_15 WHERE class = "c1" AND laps > 77 AND driver = "klaus ludwig" |
56,543 | <question>: Who is the driver of the chassis-engine porsche 956 gti? <context>: CREATE TABLE table_name_14 (driver VARCHAR, chassis___engine VARCHAR) | SELECT driver FROM table_name_14 WHERE chassis___engine = "porsche 956 gti" |
56,544 | <question>: What team has a porsche 956 b chassis-engine with less than 79 laps? <context>: CREATE TABLE table_name_17 (team VARCHAR, chassis___engine VARCHAR, laps VARCHAR) | SELECT team FROM table_name_17 WHERE chassis___engine = "porsche 956 b" AND laps < 79 |
56,545 | <question>: What was the worldwide gross for the film directed by joe pytka? <context>: CREATE TABLE table_name_65 (worldwide_gross VARCHAR, director VARCHAR) | SELECT worldwide_gross FROM table_name_65 WHERE director = "joe pytka" |
56,546 | <question>: What was the average rank for the film directed by roland emmerich under the studio of 20th century fox? <context>: CREATE TABLE table_name_82 (rank INTEGER, studio VARCHAR, director VARCHAR) | SELECT AVG(rank) FROM table_name_82 WHERE studio = "20th century fox" AND director = "roland emmerich" |
56,547 | <question>: What is the average rank for the film directed by michael bay? <context>: CREATE TABLE table_name_90 (rank INTEGER, director VARCHAR) | SELECT AVG(rank) FROM table_name_90 WHERE director = "michael bay" |
56,548 | <question>: What is the 3rd largest where the largest city is Ardabil? <context>: CREATE TABLE table_name_35 (largest_city VARCHAR) | SELECT 3 AS rd_largest FROM table_name_35 WHERE largest_city = "ardabil" |
56,549 | <question>: What province has the largest city of Birjand? <context>: CREATE TABLE table_name_73 (province VARCHAR, largest_city VARCHAR) | SELECT province FROM table_name_73 WHERE largest_city = "birjand" |
56,550 | <question>: What was the score on september 28? <context>: CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_58 WHERE date = "september 28" |
56,551 | <question>: What date was the score 29-7? <context>: CREATE TABLE table_name_28 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_28 WHERE score = "29-7" |
56,552 | <question>: How much January has a Game smaller than 37, and an Opponent of detroit red wings? <context>: CREATE TABLE table_name_67 (january VARCHAR, game VARCHAR, opponent VARCHAR) | SELECT COUNT(january) FROM table_name_67 WHERE game < 37 AND opponent = "detroit red wings" |
56,553 | <question>: Which January has an Opponent of toronto maple leafs? <context>: CREATE TABLE table_name_55 (january VARCHAR, opponent VARCHAR) | SELECT january FROM table_name_55 WHERE opponent = "toronto maple leafs" |
56,554 | <question>: Which January has an Opponent of @ detroit red wings? <context>: CREATE TABLE table_name_74 (january INTEGER, opponent VARCHAR) | SELECT AVG(january) FROM table_name_74 WHERE opponent = "@ detroit red wings" |
56,555 | <question>: What date was the score won 1-2? <context>: CREATE TABLE table_name_93 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_93 WHERE score = "won 1-2" |
56,556 | <question>: What was the score when Bornor Regis Town was the opponent? <context>: CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_58 WHERE opponent = "bornor regis town" |
56,557 | <question>: What is the number of people in attendance when Tonbridge Angels is the opponent? <context>: CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_86 WHERE opponent = "tonbridge angels" |
56,558 | <question>: What is the score when the attendance shows TBC, and Sidley United was the opponent? <context>: CREATE TABLE table_name_81 (score VARCHAR, attendance VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_81 WHERE attendance = "tbc" AND opponent = "sidley united" |
56,559 | <question>: What is the score when the scorers show match report? <context>: CREATE TABLE table_name_97 (score VARCHAR, scorers VARCHAR) | SELECT score FROM table_name_97 WHERE scorers = "match report" |
56,560 | <question>: Which Album has a Label of msb 801? <context>: CREATE TABLE table_name_87 (album VARCHAR, label VARCHAR) | SELECT album FROM table_name_87 WHERE label = "msb 801" |
56,561 | <question>: Which Album has a Label of tumbleweed 1014? <context>: CREATE TABLE table_name_84 (album VARCHAR, label VARCHAR) | SELECT album FROM table_name_84 WHERE label = "tumbleweed 1014" |
56,562 | <question>: What was the score when the tie no was 12? <context>: CREATE TABLE table_name_72 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_72 WHERE tie_no = "12" |
56,563 | <question>: What date was the match against carlisle united? <context>: CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_65 WHERE away_team = "carlisle united" |
56,564 | <question>: Who was the home team when millwall was the away team? <context>: CREATE TABLE table_name_11 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_11 WHERE away_team = "millwall" |
56,565 | <question>: What category was the nominated in after 2008? <context>: CREATE TABLE table_name_31 (category VARCHAR, outcome VARCHAR, year VARCHAR) | SELECT category FROM table_name_31 WHERE outcome = "nominated" AND year > 2008 |
56,566 | <question>: What year had the supernova award? <context>: CREATE TABLE table_name_46 (year VARCHAR, category VARCHAR) | SELECT year FROM table_name_46 WHERE category = "supernova award" |
56,567 | <question>: What category was the winner in? <context>: CREATE TABLE table_name_45 (category VARCHAR, outcome VARCHAR) | SELECT category FROM table_name_45 WHERE outcome = "winner" |
56,568 | <question>: what is the country when the iata is gva? <context>: CREATE TABLE table_name_7 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_7 WHERE iata = "gva" |
56,569 | <question>: what is the country for the city of cardiff? <context>: CREATE TABLE table_name_34 (country VARCHAR, city VARCHAR) | SELECT country FROM table_name_34 WHERE city = "cardiff" |
56,570 | <question>: what is the icao when the country is norway? <context>: CREATE TABLE table_name_28 (icao VARCHAR, country VARCHAR) | SELECT icao FROM table_name_28 WHERE country = "norway" |
56,571 | <question>: what is the city for the country of netherlands? <context>: CREATE TABLE table_name_96 (city VARCHAR, country VARCHAR) | SELECT city FROM table_name_96 WHERE country = "netherlands" |
56,572 | <question>: what is the airport when the city is düsseldorf? <context>: CREATE TABLE table_name_41 (airport VARCHAR, city VARCHAR) | SELECT airport FROM table_name_41 WHERE city = "düsseldorf" |
56,573 | <question>: what is the iata when the city is leipzig? <context>: CREATE TABLE table_name_91 (iata VARCHAR, city VARCHAR) | SELECT iata FROM table_name_91 WHERE city = "leipzig" |
56,574 | <question>: What is the record on February 23? <context>: CREATE TABLE table_name_82 (record VARCHAR, february VARCHAR) | SELECT record FROM table_name_82 WHERE february = 23 |
56,575 | <question>: What was the rank of the rider whose ascent time was 43:24 before the year 2002? <context>: CREATE TABLE table_name_87 (rank VARCHAR, year VARCHAR, ascent_time VARCHAR) | SELECT COUNT(rank) FROM table_name_87 WHERE year < 2002 AND ascent_time = "43:24" |
56,576 | <question>: Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h? <context>: CREATE TABLE table_name_43 (rider VARCHAR, speed VARCHAR, rank VARCHAR, year VARCHAR) | SELECT rider FROM table_name_43 WHERE rank < 8 AND year = 2000 AND speed = "18.32 km/h" |
56,577 | <question>: What is the number of completions and attempts taken in 2009? <context>: CREATE TABLE table_name_83 (comp_att VARCHAR, season VARCHAR) | SELECT comp_att FROM table_name_83 WHERE season = "2009" |
56,578 | <question>: What is the completion/attempts value for the year with an average per game of 36.5? <context>: CREATE TABLE table_name_10 (comp_att VARCHAR, avg_g VARCHAR) | SELECT comp_att FROM table_name_10 WHERE avg_g = "36.5" |
56,579 | <question>: What is the long value for the year with an average/game of 160.9? <context>: CREATE TABLE table_name_17 (long VARCHAR, avg_g VARCHAR) | SELECT long FROM table_name_17 WHERE avg_g = "160.9" |
56,580 | <question>: What was the highest attendance of February 7, 2009 and more than 49 points? <context>: CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR, points VARCHAR) | SELECT MAX(attendance) FROM table_name_17 WHERE date = "february 7, 2009" AND points > 49 |
56,581 | <question>: Which game has a number lower than 57 and more than 50 points? <context>: CREATE TABLE table_name_25 (location VARCHAR, game VARCHAR, points VARCHAR) | SELECT location FROM table_name_25 WHERE game < 57 AND points > 50 |
56,582 | <question>: What game in February 10, 2009 has the most points and a game number larger than 54? <context>: CREATE TABLE table_name_27 (points INTEGER, date VARCHAR, game VARCHAR) | SELECT MAX(points) FROM table_name_27 WHERE date = "february 10, 2009" AND game > 54 |
56,583 | <question>: What's the current streak with a last 10 meetings of lsu, 2-1? <context>: CREATE TABLE table_name_50 (current_streak VARCHAR, last_10_meetings VARCHAR) | SELECT current_streak FROM table_name_50 WHERE last_10_meetings = "lsu, 2-1" |
56,584 | <question>: What is the probable future word for the simple present/future word high grade? <context>: CREATE TABLE table_name_82 (probable_future VARCHAR, simple_present_future VARCHAR) | SELECT probable_future FROM table_name_82 WHERE NOT simple_present_future = "high grade" |
56,585 | <question>: What is the injunctive for the Simple Past of गरुँला garũlā 'I will (probably) do'? <context>: CREATE TABLE table_name_99 (injunctive VARCHAR, simple_past VARCHAR) | SELECT injunctive FROM table_name_99 WHERE simple_past = "गरुँला garũlā 'i will (probably) do'" |
56,586 | <question>: What is the date of taking office for Giorgia Meloni? <context>: CREATE TABLE table_name_28 (took_office VARCHAR, minister VARCHAR) | SELECT took_office FROM table_name_28 WHERE minister = "giorgia meloni" |
56,587 | <question>: Which party was Andrea Ronchi from? <context>: CREATE TABLE table_name_85 (party VARCHAR, minister VARCHAR) | SELECT party FROM table_name_85 WHERE minister = "andrea ronchi" |
56,588 | <question>: What is the lowest Division, when Team is "Benfica", and when Apps is 22? <context>: CREATE TABLE table_name_30 (division INTEGER, team VARCHAR, apps VARCHAR) | SELECT MIN(division) FROM table_name_30 WHERE team = "benfica" AND apps = 22 |
56,589 | <question>: What Championship had a winning score of 69-71-67-68=275? <context>: CREATE TABLE table_name_9 (championship VARCHAR, winning_score VARCHAR) | SELECT championship FROM table_name_9 WHERE winning_score = 69 - 71 - 67 - 68 = 275 |
56,590 | <question>: What is Jockey, when Time is 1:15.89? <context>: CREATE TABLE table_name_55 (jockey VARCHAR, time VARCHAR) | SELECT jockey FROM table_name_55 WHERE time = "1:15.89" |
56,591 | <question>: What is Time, when Jockey is John Velazquez, and when Trainer is Todd A. Pletcher? <context>: CREATE TABLE table_name_16 (time VARCHAR, jockey VARCHAR, trainer VARCHAR) | SELECT time FROM table_name_16 WHERE jockey = "john velazquez" AND trainer = "todd a. pletcher" |
56,592 | <question>: What is Winner, when Year is 2001? <context>: CREATE TABLE table_name_34 (winner VARCHAR, year VARCHAR) | SELECT winner FROM table_name_34 WHERE year = 2001 |
56,593 | <question>: What is Jockey, when Winner is Alke? <context>: CREATE TABLE table_name_10 (jockey VARCHAR, winner VARCHAR) | SELECT jockey FROM table_name_10 WHERE winner = "alke" |
56,594 | <question>: What is the average laps for the +50.653 time? <context>: CREATE TABLE table_name_42 (laps INTEGER, time VARCHAR) | SELECT AVG(laps) FROM table_name_42 WHERE time = "+50.653" |
56,595 | <question>: What is the highest Matches were the points were smaller than 8, the place was larger than 13, and the drawn is less than 1? <context>: CREATE TABLE table_name_78 (matches INTEGER, drawn VARCHAR, points VARCHAR, place VARCHAR) | SELECT MAX(matches) FROM table_name_78 WHERE points < 8 AND place > 13 AND drawn < 1 |
56,596 | <question>: What is the average points when the drawn is less than 0? <context>: CREATE TABLE table_name_68 (points INTEGER, drawn INTEGER) | SELECT AVG(points) FROM table_name_68 WHERE drawn < 0 |
56,597 | <question>: What was Turkey's lowest gold when there were less than 2 bronze? <context>: CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MIN(gold) FROM table_name_83 WHERE nation = "turkey" AND bronze < 2 |
56,598 | <question>: What is the average area in square miles for the hunan administrative division with a national share less than 2.19%? <context>: CREATE TABLE table_name_88 (area__sq_mi_ INTEGER, administrative_division VARCHAR, national_share___percentage_ VARCHAR) | SELECT AVG(area__sq_mi_) FROM table_name_88 WHERE administrative_division = "hunan" AND national_share___percentage_ < 2.19 |
56,599 | <question>: What is Central Michigan's average overall when the pick was 8? <context>: CREATE TABLE table_name_83 (overall INTEGER, college VARCHAR, pick VARCHAR) | SELECT AVG(overall) FROM table_name_83 WHERE college = "central michigan" AND pick = 8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.