text stringlengths 114 1.06k |
|---|
### question: What position was played by the player during 1986 β 1991 1997 β 1999? ### answer: SELECT position FROM table_name_57 WHERE years = "1986 β 1991 1997 β 1999" ### context: CREATE TABLE table_name_57 (position VARCHAR, years VARCHAR) |
### question: During what years was the Jersey Numbers 34, 30 played? ### answer: SELECT years FROM table_name_13 WHERE jersey_number_s_ = "34, 30" ### context: CREATE TABLE table_name_13 (years VARCHAR, jersey_number_s_ VARCHAR) |
### question: What is Record, when Opponent is San Francisco Warriors? ### answer: SELECT record FROM table_name_78 WHERE opponent = "san francisco warriors" ### context: CREATE TABLE table_name_78 (record VARCHAR, opponent VARCHAR) |
### question: What is H/A/N, when Date is October 31? ### answer: SELECT h_a_n FROM table_name_50 WHERE date = "october 31" ### context: CREATE TABLE table_name_50 (h_a_n VARCHAR, date VARCHAR) |
### question: What is Score, when Opponent is Atlanta Hawks? ### answer: SELECT score FROM table_name_44 WHERE opponent = "atlanta hawks" ### context: CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR) |
### question: What is H/A/N, when Record is 2-5? ### answer: SELECT h_a_n FROM table_name_74 WHERE record = "2-5" ### context: CREATE TABLE table_name_74 (h_a_n VARCHAR, record VARCHAR) |
### question: What is Record, when Date is October 31? ### answer: SELECT record FROM table_name_37 WHERE date = "october 31" ### context: CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR) |
### question: What is Record, when H/A/N is n? ### answer: SELECT record FROM table_name_42 WHERE h_a_n = "n" ### context: CREATE TABLE table_name_42 (record VARCHAR, h_a_n VARCHAR) |
### question: What was the guage of the concessionaire ferrosur roca? ### answer: SELECT gauge FROM table_name_8 WHERE concessionaire = "ferrosur roca" ### context: CREATE TABLE table_name_8 (gauge VARCHAR, concessionaire VARCHAR) |
### question: What is the takeover date of the FA division mitre? ### answer: SELECT takeover_date FROM table_name_19 WHERE fa_division_s_ = "mitre" ### context: CREATE TABLE table_name_19 (takeover_date VARCHAR, fa_division_s_ VARCHAR) |
### question: What date was the tournament in Indian Wells? ### answer: SELECT date FROM table_name_39 WHERE tournament = "indian wells" ### context: CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR) |
### question: Who was the opponent in the math that was played in Nice on a clay court? ### answer: SELECT opponent FROM table_name_23 WHERE surface = "clay" AND tournament = "nice" ### context: CREATE TABLE table_name_23 (opponent VARCHAR, surface VARCHAR, tournament VARCHAR) |
### question: What was the score in the match against Sergi Bruguera? ### answer: SELECT score FROM table_name_70 WHERE opponent = "sergi bruguera" ### context: CREATE TABLE table_name_70 (score VARCHAR, opponent VARCHAR) |
### question: What was the score of the tournament in Wellington? ### answer: SELECT score FROM table_name_5 WHERE tournament = "wellington" ### context: CREATE TABLE table_name_5 (score VARCHAR, tournament VARCHAR) |
### question: Which race was in round 6? ### answer: SELECT race_name FROM table_name_10 WHERE round = 6 ### context: CREATE TABLE table_name_10 (race_name VARCHAR, round VARCHAR) |
### question: Which round did jonathan bomarito win? ### answer: SELECT round FROM table_name_23 WHERE winning_driver = "jonathan bomarito" ### context: CREATE TABLE table_name_23 (round VARCHAR, winning_driver VARCHAR) |
### question: What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth? ### answer: SELECT race_name FROM table_name_16 WHERE winning_team = "mi-jack conquest racing" AND pole_position = "andreas wirth" ### context: CREATE TABLE table_name_16 (race_name VARCHAR, winning_team VARCHAR, pol... |
### question: What race after round 6 did Graham Rahal win with a pole position of graham rahal? ### answer: SELECT race_name FROM table_name_59 WHERE winning_driver = "graham rahal" AND round > 6 AND pole_position = "graham rahal" ### context: CREATE TABLE table_name_59 (race_name VARCHAR, pole_position VARCHAR, winni... |
### question: What pole position did 2006 gehl championship finale have? ### answer: SELECT pole_position FROM table_name_82 WHERE race_name = "2006 gehl championship finale" ### context: CREATE TABLE table_name_82 (pole_position VARCHAR, race_name VARCHAR) |
### question: who is the player when the place is t5 and the score is 69-74=143? ### answer: SELECT player FROM table_name_26 WHERE place = "t5" AND score = 69 - 74 = 143 ### context: CREATE TABLE table_name_26 (player VARCHAR, place VARCHAR, score VARCHAR) |
### question: what is the score when the country is united states, the to par is +2 and the player is phil hancock? ### answer: SELECT score FROM table_name_49 WHERE country = "united states" AND to_par = "+2" AND player = "phil hancock" ### context: CREATE TABLE table_name_49 (score VARCHAR, player VARCHAR, country VA... |
### question: what is the place for gary player? ### answer: SELECT place FROM table_name_98 WHERE player = "gary player" ### context: CREATE TABLE table_name_98 (place VARCHAR, player VARCHAR) |
### question: what is the place when the score is 70-72=142? ### answer: SELECT place FROM table_name_48 WHERE score = 70 - 72 = 142 ### context: CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR) |
### question: what is the place when the score is 70-70=140? ### answer: SELECT place FROM table_name_53 WHERE score = 70 - 70 = 140 ### context: CREATE TABLE table_name_53 (place VARCHAR, score VARCHAR) |
### question: who is the player when the country is united states and the score is 71-73=144? ### answer: SELECT player FROM table_name_93 WHERE country = "united states" AND score = 71 - 73 = 144 ### context: CREATE TABLE table_name_93 (player VARCHAR, country VARCHAR, score VARCHAR) |
### question: What school or team is in a round below 5 with a pick of 2? ### answer: SELECT school_club_team FROM table_name_57 WHERE round < 5 AND pick = 2 ### context: CREATE TABLE table_name_57 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR) |
### question: Who is the player with a pick less than 234 and a quarterback position? ### answer: SELECT player FROM table_name_55 WHERE pick < 234 AND position = "quarterback" ### context: CREATE TABLE table_name_55 (player VARCHAR, pick VARCHAR, position VARCHAR) |
### question: Who is the player in tight end position in a round below 12 that has a pick greater than 17? ### answer: SELECT player FROM table_name_81 WHERE pick > 17 AND round < 12 AND position = "tight end" ### context: CREATE TABLE table_name_81 (player VARCHAR, position VARCHAR, pick VARCHAR, round VARCHAR) |
### question: How many picks does Auburn have? ### answer: SELECT COUNT(pick) FROM table_name_47 WHERE school_club_team = "auburn" ### context: CREATE TABLE table_name_47 (pick VARCHAR, school_club_team VARCHAR) |
### question: What is the career for 2007 3r, and 1999 1r? ### answer: SELECT career FROM table_name_80 WHERE 2007 = "3r" AND 1999 = "1r" ### context: CREATE TABLE table_name_80 (career VARCHAR) |
### question: What is the career for the 2006 3r, and the 1999 2r? ### answer: SELECT career FROM table_name_70 WHERE 2006 = "3r" AND 1999 = "2r" ### context: CREATE TABLE table_name_70 (career VARCHAR) |
### question: Who in 2009, has a 2003 2r and a 2000 2r? ### answer: SELECT 2009 FROM table_name_64 WHERE 2003 = "2r" AND 2000 = "2r" ### context: CREATE TABLE table_name_64 (Id VARCHAR) |
### question: What is Result/Score, when Year is greater than 2005, and when Opponent is #8 Arkansas #1 Memphis? ### answer: SELECT result_score FROM table_name_92 WHERE year > 2005 AND opponent = "#8 arkansas #1 memphis" ### context: CREATE TABLE table_name_92 (result_score VARCHAR, year VARCHAR, opponent VARCHAR) |
### question: What is the highest Year, when Opponent is #2 Syracuse? ### answer: SELECT MAX(year) FROM table_name_52 WHERE opponent = "#2 syracuse" ### context: CREATE TABLE table_name_52 (year INTEGER, opponent VARCHAR) |
### question: What is Round when Year is 1987? ### answer: SELECT round FROM table_name_92 WHERE year = 1987 ### context: CREATE TABLE table_name_92 (round VARCHAR, year VARCHAR) |
### question: What is the sum of Year, when Opponent is #3 UCONN? ### answer: SELECT SUM(year) FROM table_name_40 WHERE opponent = "#3 uconn" ### context: CREATE TABLE table_name_40 (year INTEGER, opponent VARCHAR) |
### question: What's the longitude named zipaltonal fluctus in 1997 with a diameter smaller than 490? ### answer: SELECT longitude FROM table_name_41 WHERE year_named = 1997 AND diameter__km_ < 490 AND name = "zipaltonal fluctus" ### context: CREATE TABLE table_name_41 (longitude VARCHAR, name VARCHAR, year_named VARCH... |
### question: What's the diameter of kaiwan fluctus? ### answer: SELECT diameter__km_ FROM table_name_30 WHERE name = "kaiwan fluctus" ### context: CREATE TABLE table_name_30 (diameter__km_ VARCHAR, name VARCHAR) |
### question: In what game did the New York Rangers play against the Chicago Black Hawks? ### answer: SELECT game FROM table_name_5 WHERE opponent = "chicago black hawks" ### context: CREATE TABLE table_name_5 (game VARCHAR, opponent VARCHAR) |
### question: WHAT IS THE SCORE FOR GREG NORMAN? ### answer: SELECT score FROM table_name_29 WHERE player = "greg norman" ### context: CREATE TABLE table_name_29 (score VARCHAR, player VARCHAR) |
### question: WHAT IS THE PLAYER WITH A TO PAR OF E, AND SCORE OF 68-72=140? ### answer: SELECT player FROM table_name_2 WHERE to_par = "e" AND score = 68 - 72 = 140 ### context: CREATE TABLE table_name_2 (player VARCHAR, to_par VARCHAR, score VARCHAR) |
### question: WHAT IS THE TO PAR WITH T5 PLACE, AND PLAYER MARK MCCUMBER? ### answer: SELECT to_par FROM table_name_68 WHERE place = "t5" AND player = "mark mccumber" ### context: CREATE TABLE table_name_68 (to_par VARCHAR, place VARCHAR, player VARCHAR) |
### question: When was the microprocessor with 1.65β1.7 v, a mult of 4.5Γ, and a slot 1 socket released? ### answer: SELECT release_date FROM table_name_43 WHERE voltage = "1.65β1.7 v" AND mult = "4.5Γ" AND socket = "slot 1" ### context: CREATE TABLE table_name_43 (release_date VARCHAR, socket VARCHAR, voltage VARCHAR,... |
### question: What is the voltage of the Pentiumiii866 microprocessor with a socket 370? ### answer: SELECT voltage FROM table_name_8 WHERE socket = "socket 370" AND model_number = "pentiumiii866" ### context: CREATE TABLE table_name_8 (voltage VARCHAR, socket VARCHAR, model_number VARCHAR) |
### question: What kind of socket is on the microprocessor with a part number of 80526pz533256? ### answer: SELECT socket FROM table_name_28 WHERE part_number_s_ = "80526pz533256" ### context: CREATE TABLE table_name_28 (socket VARCHAR, part_number_s_ VARCHAR) |
### question: What is the Date of the match with Opponent in the final Kenneth Carlsen? ### answer: SELECT date FROM table_name_41 WHERE opponent_in_the_final = "kenneth carlsen" ### context: CREATE TABLE table_name_41 (date VARCHAR, opponent_in_the_final VARCHAR) |
### question: What is the Date of the match with a Score in the final of 6β3, 6β3, 2β6, 6β4? ### answer: SELECT date FROM table_name_9 WHERE score_in_the_final = "6β3, 6β3, 2β6, 6β4" ### context: CREATE TABLE table_name_9 (date VARCHAR, score_in_the_final VARCHAR) |
### question: How many games did they lose when they tied less than 2 games? ### answer: SELECT lost FROM table_name_39 WHERE draw < 2 ### context: CREATE TABLE table_name_39 (lost VARCHAR, draw INTEGER) |
### question: What is the least ties when they played less than 14 games, and a lost less than 8 of them? ### answer: SELECT MIN(draw) FROM table_name_7 WHERE played < 14 AND lost < 8 ### context: CREATE TABLE table_name_7 (draw INTEGER, played VARCHAR, lost VARCHAR) |
### question: What is the lowest number of games played where they tied more than 7 of them? ### answer: SELECT MIN(played) FROM table_name_92 WHERE draw > 7 ### context: CREATE TABLE table_name_92 (played INTEGER, draw INTEGER) |
### question: What is the highest Against where they lost less than 20 games, tied more than 2 of them, and they had Favour less than 11? ### answer: SELECT MAX(against) FROM table_name_85 WHERE lost < 20 AND draw > 2 AND favour < 11 ### context: CREATE TABLE table_name_85 (against INTEGER, favour VARCHAR, lost VARCHAR... |
### question: WHAT IS THE SCORE FOR 2010 fifa world cup qualification? ### answer: SELECT score FROM table_name_28 WHERE competition = "2010 fifa world cup qualification" ### context: CREATE TABLE table_name_28 (score VARCHAR, competition VARCHAR) |
### question: What is the latest year rafael nadal was in the French Open, Roger Federer was in Wimbledon, and Roger Federer was in the Australian Open? ### answer: SELECT MAX(year) FROM table_name_71 WHERE french_open = "rafael nadal" AND wimbledon = "roger federer" AND australian_open = "roger federer" ### context: C... |
### question: What is the total number of years Andy Murray was at Wimbledon? ### answer: SELECT COUNT(year) FROM table_name_27 WHERE wimbledon = "andy murray" ### context: CREATE TABLE table_name_27 (year VARCHAR, wimbledon VARCHAR) |
### question: What is the Australian open in 2010? ### answer: SELECT australian_open FROM table_name_71 WHERE year = 2010 ### context: CREATE TABLE table_name_71 (australian_open VARCHAR, year VARCHAR) |
### question: What is the highest loss with a long more than 61? ### answer: SELECT MAX(loss) FROM table_name_1 WHERE long > 61 ### context: CREATE TABLE table_name_1 (loss INTEGER, long INTEGER) |
### question: What is the long with a loss lower than 133 and more than 0 gain with an avg/G of 29.8? ### answer: SELECT AVG(long) FROM table_name_10 WHERE loss < 133 AND gain > 0 AND avg_g = 29.8 ### context: CREATE TABLE table_name_10 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR) |
### question: What is the lowest long with an avg/G more than -2.2 and a total name and a gain of more than 2,488? ### answer: SELECT MIN(long) FROM table_name_60 WHERE avg_g > -2.2 AND name = "total" AND gain > 2 OFFSET 488 ### context: CREATE TABLE table_name_60 (long INTEGER, gain VARCHAR, avg_g VARCHAR, name VARCHA... |
### question: What is the network brand name of the company vodafone group in Germany? ### answer: SELECT network_brand_name FROM table_name_45 WHERE company_name = "vodafone group" AND country = "germany" ### context: CREATE TABLE table_name_45 (network_brand_name VARCHAR, company_name VARCHAR, country VARCHAR) |
### question: What is the accreditation level of the network brand Movistar? ### answer: SELECT accreditation_level FROM table_name_76 WHERE network_brand_name = "movistar" ### context: CREATE TABLE table_name_76 (accreditation_level VARCHAR, network_brand_name VARCHAR) |
### question: What date was Movistar accredited? ### answer: SELECT date FROM table_name_6 WHERE network_brand_name = "movistar" ### context: CREATE TABLE table_name_6 (date VARCHAR, network_brand_name VARCHAR) |
### question: What is the accreditation type of Vodacom Group PTY LTD (Vodafone group)? ### answer: SELECT accreditation_type FROM table_name_22 WHERE company_name = "vodacom group pty ltd (vodafone group)" ### context: CREATE TABLE table_name_22 (accreditation_type VARCHAR, company_name VARCHAR) |
### question: What is Deutsche Telekom's accreditation type? ### answer: SELECT accreditation_type FROM table_name_88 WHERE network_brand_name = "deutsche telekom" ### context: CREATE TABLE table_name_88 (accreditation_type VARCHAR, network_brand_name VARCHAR) |
### question: What was the Location and Attendance of Game 6? ### answer: SELECT location_attendance FROM table_name_51 WHERE game = 6 ### context: CREATE TABLE table_name_51 (location_attendance VARCHAR, game VARCHAR) |
### question: What inclination has a semimajor axis of 20 au? ### answer: SELECT inclination FROM table_name_16 WHERE semimajor_axis___au__ = "20 au" ### context: CREATE TABLE table_name_16 (inclination VARCHAR, semimajor_axis___au__ VARCHAR) |
### question: What is the eccentricity when the semimajor axis is 20 au? ### answer: SELECT eccentricity FROM table_name_75 WHERE semimajor_axis___au__ = "20 au" ### context: CREATE TABLE table_name_75 (eccentricity VARCHAR, semimajor_axis___au__ VARCHAR) |
### question: What is Score, when Team is "Indiana"? ### answer: SELECT score FROM table_name_7 WHERE team = "indiana" ### context: CREATE TABLE table_name_7 (score VARCHAR, team VARCHAR) |
### question: What is Date, when Game is "8"? ### answer: SELECT date FROM table_name_48 WHERE game = 8 ### context: CREATE TABLE table_name_48 (date VARCHAR, game VARCHAR) |
### question: What is High Assists, when Date is "November 1"? ### answer: SELECT high_assists FROM table_name_18 WHERE date = "november 1" ### context: CREATE TABLE table_name_18 (high_assists VARCHAR, date VARCHAR) |
### question: Who was the winner on a hard surface on the week of November 13? ### answer: SELECT winner FROM table_name_30 WHERE surface = "hard" AND week = "november 13" ### context: CREATE TABLE table_name_30 (winner VARCHAR, surface VARCHAR, week VARCHAR) |
### question: Which player had a conference of PAC-10 and position of G? ### answer: SELECT player FROM table_name_56 WHERE conf = "pac-10" AND pos = "g" ### context: CREATE TABLE table_name_56 (player VARCHAR, conf VARCHAR, pos VARCHAR) |
### question: Which player had a position of OL from Ohio State? ### answer: SELECT player FROM table_name_65 WHERE pos = "ol" AND college = "ohio state" ### context: CREATE TABLE table_name_65 (player VARCHAR, pos VARCHAR, college VARCHAR) |
### question: Which player had a position of QB for Texas Tech? ### answer: SELECT player FROM table_name_84 WHERE pos = "qb" AND college = "texas tech" ### context: CREATE TABLE table_name_84 (player VARCHAR, pos VARCHAR, college VARCHAR) |
### question: Can you tell me the Opponent that has the Round of 3? ### answer: SELECT opponent FROM table_name_30 WHERE round = 3 ### context: CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR) |
### question: What is the main use for the structure listed in walker city, iowa? ### answer: SELECT main_use FROM table_name_25 WHERE town = "walker city, iowa" ### context: CREATE TABLE table_name_25 (main_use VARCHAR, town VARCHAR) |
### question: What year was the structure in greensboro, north carolina considered tallest? ### answer: SELECT year FROM table_name_16 WHERE town = "greensboro, north carolina" ### context: CREATE TABLE table_name_16 (year VARCHAR, town VARCHAR) |
### question: What was the earliest year that a structure was located in gray court, south carolina? ### answer: SELECT MIN(year) FROM table_name_63 WHERE town = "gray court, south carolina" ### context: CREATE TABLE table_name_63 (year INTEGER, town VARCHAR) |
### question: What is the main use of the structure that was in redfield, arkansas before 2004? ### answer: SELECT main_use FROM table_name_77 WHERE year < 2004 AND town = "redfield, arkansas" ### context: CREATE TABLE table_name_77 (main_use VARCHAR, year VARCHAR, town VARCHAR) |
### question: How far did the pilot go when averaging 124.1km/h? ### answer: SELECT distance FROM table_name_44 WHERE speed = "124.1km/h" ### context: CREATE TABLE table_name_44 (distance VARCHAR, speed VARCHAR) |
### question: What was sebastian kawa's average speed with Diana 2? ### answer: SELECT speed FROM table_name_36 WHERE glider = "diana 2" AND pilot = "sebastian kawa" ### context: CREATE TABLE table_name_36 (speed VARCHAR, glider VARCHAR, pilot VARCHAR) |
### question: What glider did thomas gostner pilot? ### answer: SELECT glider FROM table_name_84 WHERE pilot = "thomas gostner" ### context: CREATE TABLE table_name_84 (glider VARCHAR, pilot VARCHAR) |
### question: Which Run 4 has a Final of 8:16.28? ### answer: SELECT run_4 FROM table_name_22 WHERE final = "8:16.28" ### context: CREATE TABLE table_name_22 (run_4 VARCHAR, final VARCHAR) |
### question: Which Run 4 has Athletes of hubert stevens & curtis stevens? ### answer: SELECT run_4 FROM table_name_46 WHERE athletes = "hubert stevens & curtis stevens" ### context: CREATE TABLE table_name_46 (run_4 VARCHAR, athletes VARCHAR) |
### question: Which Run 2 has a Rank of 4? ### answer: SELECT run_2 FROM table_name_9 WHERE rank = "4" ### context: CREATE TABLE table_name_9 (run_2 VARCHAR, rank VARCHAR) |
### question: Which Athletes have a Rank of bronze? ### answer: SELECT athletes FROM table_name_44 WHERE rank = "bronze" ### context: CREATE TABLE table_name_44 (athletes VARCHAR, rank VARCHAR) |
### question: Which Athletes have a Run 2 of 2:21.82? ### answer: SELECT athletes FROM table_name_39 WHERE run_2 = "2:21.82" ### context: CREATE TABLE table_name_39 (athletes VARCHAR, run_2 VARCHAR) |
### question: Which Run 3 has a Run 1 of 2:20.10? ### answer: SELECT run_3 FROM table_name_13 WHERE run_1 = "2:20.10" ### context: CREATE TABLE table_name_13 (run_3 VARCHAR, run_1 VARCHAR) |
### question: What percentage did Republish Christopher Reed receive when the lead margin was smaller than 16? ### answer: SELECT republican AS :_christopher_reed FROM table_name_25 WHERE lead_margin < 16 ### context: CREATE TABLE table_name_25 (republican VARCHAR, lead_margin INTEGER) |
### question: What was Democrat: Tom Harkin's percentage when the poll source was Rasmussen Reports and the lead margin was 14? ### answer: SELECT democrat AS :_tom_harkin FROM table_name_77 WHERE poll_source = "rasmussen reports" AND lead_margin = 14 ### context: CREATE TABLE table_name_77 (democrat VARCHAR, poll_sour... |
### question: What were the dates administered when the lead margin was larger than 14 and the poll source was Research 2000? ### answer: SELECT dates_administered FROM table_name_72 WHERE lead_margin > 14 AND poll_source = "research 2000" ### context: CREATE TABLE table_name_72 (dates_administered VARCHAR, lead_margin... |
### question: What is Olivier Jacque's Time/Retired? ### answer: SELECT time_retired FROM table_name_43 WHERE rider = "olivier jacque" ### context: CREATE TABLE table_name_43 (time_retired VARCHAR, rider VARCHAR) |
### question: Which manufacturer is grid 11? ### answer: SELECT manufacturer FROM table_name_93 WHERE grid = "11" ### context: CREATE TABLE table_name_93 (manufacturer VARCHAR, grid VARCHAR) |
### question: Which manufacturer does Loris Capirossi ride for? ### answer: SELECT manufacturer FROM table_name_13 WHERE rider = "loris capirossi" ### context: CREATE TABLE table_name_13 (manufacturer VARCHAR, rider VARCHAR) |
### question: Which manufacturer has 8 laps? ### answer: SELECT manufacturer FROM table_name_18 WHERE laps = "8" ### context: CREATE TABLE table_name_18 (manufacturer VARCHAR, laps VARCHAR) |
### question: How many laps does grid 4 have? ### answer: SELECT laps FROM table_name_74 WHERE grid = "4" ### context: CREATE TABLE table_name_74 (laps VARCHAR, grid VARCHAR) |
### question: Which rider's manufacturer is Honda and has 28 laps and a grid of 1? ### answer: SELECT rider FROM table_name_35 WHERE laps = "28" AND manufacturer = "honda" AND grid = "1" ### context: CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR, laps VARCHAR, manufacturer VARCHAR) |
### question: What is the 2006 sum with a rank 1 and more than 6758845 in 1996? ### answer: SELECT SUM(2006) FROM table_name_38 WHERE rank = 1 AND 1996 > 6758845 ### context: CREATE TABLE table_name_38 (rank VARCHAR) |
### question: What is the total number in 2006, which has an official foundation of municipality of 1918? ### answer: SELECT COUNT(2006) FROM table_name_95 WHERE date_of_official_foundation_of_municipality = 1918 ### context: CREATE TABLE table_name_95 (date_of_official_foundation_of_municipality VARCHAR) |
### question: What is teh average rank of the city of mashhad, which had less than 667770 in 1976? ### answer: SELECT AVG(rank) FROM table_name_97 WHERE city = "mashhad" AND 1976 < 667770 ### context: CREATE TABLE table_name_97 (rank INTEGER, city VARCHAR) |
### question: What is the average rank of the province alborz, which had more than 14526 in 1956? ### answer: SELECT AVG(rank) FROM table_name_95 WHERE province = "alborz" AND 1956 > 14526 ### context: CREATE TABLE table_name_95 (rank INTEGER, province VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.