Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
47,800 | <question>: What event did Cristina Iovu participate in? <context>: CREATE TABLE table_name_1 (event VARCHAR, name VARCHAR) | SELECT event FROM table_name_1 WHERE name = "cristina iovu" |
47,801 | <question>: At which games was a bronze medal won in the 94kg men's weightlifting event? <context>: CREATE TABLE table_name_71 (games VARCHAR, event VARCHAR, medal VARCHAR, sport VARCHAR) | SELECT games FROM table_name_71 WHERE medal = "bronze" AND sport = "weightlifting" AND event = "94kg men's weightlifting" |
47,802 | <question>: Which sport has 94kg men's weightlifting as one of its events? <context>: CREATE TABLE table_name_22 (sport VARCHAR, event VARCHAR) | SELECT sport FROM table_name_22 WHERE event = "94kg men's weightlifting" |
47,803 | <question>: What is the Name of the Quarterback with a Pick # less than 11? <context>: CREATE TABLE table_name_90 (name VARCHAR, pick__number VARCHAR, position VARCHAR) | SELECT name FROM table_name_90 WHERE pick__number < 11 AND position = "quarterback" |
47,804 | <question>: What is donovan's surname? <context>: CREATE TABLE table_name_12 (surname VARCHAR, first VARCHAR) | SELECT surname FROM table_name_12 WHERE first = "donovan" |
47,805 | <question>: How many throws did james get? <context>: CREATE TABLE table_name_39 (throws VARCHAR, first VARCHAR) | SELECT throws FROM table_name_39 WHERE first = "james" |
47,806 | <question>: When is Biddle's DOB? <context>: CREATE TABLE table_name_5 (dob VARCHAR, surname VARCHAR) | SELECT dob FROM table_name_5 WHERE surname = "biddle" |
47,807 | <question>: Who is the opponent of the game with 33,628 folks in attendance? <context>: CREATE TABLE table_name_27 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_27 WHERE attendance = "33,628" |
47,808 | <question>: What is the loss of the game with 38,062 folks in attendance? <context>: CREATE TABLE table_name_12 (loss VARCHAR, attendance VARCHAR) | SELECT loss FROM table_name_12 WHERE attendance = "38,062" |
47,809 | <question>: What is the score of the game that 33,531 people went too? <context>: CREATE TABLE table_name_19 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_19 WHERE attendance = "33,531" |
47,810 | <question>: What is the date of the game with 38,062 people in attendance? <context>: CREATE TABLE table_name_80 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_80 WHERE attendance = "38,062" |
47,811 | <question>: What is Brendan Locke's College/Junior/Club Team (League)? <context>: CREATE TABLE table_name_11 (college_junior_club_team__league_ VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_11 WHERE player = "brendan locke" |
47,812 | <question>: What League's Round is Sup and Position is Right Wing? <context>: CREATE TABLE table_name_38 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_38 WHERE position = "right wing" AND round = "sup" |
47,813 | <question>: In what Round is the Position Goaltender? <context>: CREATE TABLE table_name_24 (round VARCHAR, position VARCHAR) | SELECT round FROM table_name_24 WHERE position = "goaltender" |
47,814 | <question>: In what League is Left Wing Yanick Dupre? <context>: CREATE TABLE table_name_94 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_94 WHERE position = "left wing" AND player = "yanick dupre" |
47,815 | <question>: In what League in Round 6 is the Position Right Wing? <context>: CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = "right wing" AND round = "6" |
47,816 | <question>: In what Round is John Parco a Center? <context>: CREATE TABLE table_name_70 (round VARCHAR, position VARCHAR, player VARCHAR) | SELECT round FROM table_name_70 WHERE position = "center" AND player = "john parco" |
47,817 | <question>: Which team had 15 draws? <context>: CREATE TABLE table_name_21 (team VARCHAR, draws VARCHAR) | SELECT team FROM table_name_21 WHERE draws = "15" |
47,818 | <question>: Which season had 16 losses for the Hampshire team? <context>: CREATE TABLE table_name_79 (season VARCHAR, losses VARCHAR, team VARCHAR) | SELECT season FROM table_name_79 WHERE losses = "16" AND team = "hampshire" |
47,819 | <question>: Which season had 0 wins and 5 losses for the Surrey team? <context>: CREATE TABLE table_name_61 (season VARCHAR, team VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT season FROM table_name_61 WHERE wins = "0" AND losses = "5" AND team = "surrey" |
47,820 | <question>: Which season had 10 draws? <context>: CREATE TABLE table_name_48 (season VARCHAR, draws VARCHAR) | SELECT season FROM table_name_48 WHERE draws = "10" |
47,821 | <question>: How many draws did Durham have? <context>: CREATE TABLE table_name_72 (draws VARCHAR, team VARCHAR) | SELECT draws FROM table_name_72 WHERE team = "durham" |
47,822 | <question>: How many wins happened with 8 draws? <context>: CREATE TABLE table_name_72 (wins VARCHAR, draws VARCHAR) | SELECT wins FROM table_name_72 WHERE draws = "8" |
47,823 | <question>: What was the grid of Jenson Button? <context>: CREATE TABLE table_name_79 (grid VARCHAR, driver VARCHAR) | SELECT grid FROM table_name_79 WHERE driver = "jenson button" |
47,824 | <question>: Who was the constructor of the car that went 56 laps and had a grid of 15? <context>: CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_31 WHERE laps = "56" AND grid = "15" |
47,825 | <question>: Who was the contstructor of the car having a grid of 20? <context>: CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_66 WHERE grid = "20" |
47,826 | <question>: What was the time of the car having a constructor of Renault, which went 40 laps? <context>: CREATE TABLE table_name_96 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR) | SELECT time_retired FROM table_name_96 WHERE constructor = "renault" AND laps = "40" |
47,827 | <question>: Who constructed the car that had a grid of 6? <context>: CREATE TABLE table_name_29 (constructor VARCHAR, grid VARCHAR) | SELECT constructor FROM table_name_29 WHERE grid = "6" |
47,828 | <question>: Can you tell me the sum of Podiums that has the Season of 2006, and the Races larger than 16? <context>: CREATE TABLE table_name_20 (podiums INTEGER, season VARCHAR, races VARCHAR) | SELECT SUM(podiums) FROM table_name_20 WHERE season = "2006" AND races > 16 |
47,829 | <question>: Can you tell me the sum of FLap that has the Pole larger than 0, and the Podiums of 6? <context>: CREATE TABLE table_name_40 (flap INTEGER, pole VARCHAR, podiums VARCHAR) | SELECT SUM(flap) FROM table_name_40 WHERE pole > 0 AND podiums = 6 |
47,830 | <question>: Name the home with record of 33-18-9 <context>: CREATE TABLE table_name_42 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_42 WHERE record = "33-18-9" |
47,831 | <question>: Name the score for detroit home and record of 33-18-9 <context>: CREATE TABLE table_name_85 (score VARCHAR, home VARCHAR, record VARCHAR) | SELECT score FROM table_name_85 WHERE home = "detroit" AND record = "33-18-9" |
47,832 | <question>: Name the score for toronto visitor and record of 29-17-8 <context>: CREATE TABLE table_name_89 (score VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT score FROM table_name_89 WHERE visitor = "toronto" AND record = "29-17-8" |
47,833 | <question>: Name the home for detroit visitor and date of february 29 <context>: CREATE TABLE table_name_25 (home VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT home FROM table_name_25 WHERE visitor = "detroit" AND date = "february 29" |
47,834 | <question>: Which Music has a Record label of moviebox/ speed records / music waves? <context>: CREATE TABLE table_name_60 (music VARCHAR, record_label VARCHAR) | SELECT music FROM table_name_60 WHERE record_label = "moviebox/ speed records / music waves" |
47,835 | <question>: Which Year is the highest one that has a Record label of supertone melodies? <context>: CREATE TABLE table_name_69 (year INTEGER, record_label VARCHAR) | SELECT MAX(year) FROM table_name_69 WHERE record_label = "supertone melodies" |
47,836 | <question>: Which Record label has an Album of tera roop? <context>: CREATE TABLE table_name_84 (record_label VARCHAR, album VARCHAR) | SELECT record_label FROM table_name_84 WHERE album = "tera roop" |
47,837 | <question>: Which Record label has an Album of rambo? <context>: CREATE TABLE table_name_63 (record_label VARCHAR, album VARCHAR) | SELECT record_label FROM table_name_63 WHERE album = "rambo" |
47,838 | <question>: Which Info has an Album of romeo? <context>: CREATE TABLE table_name_95 (info VARCHAR, album VARCHAR) | SELECT info FROM table_name_95 WHERE album = "romeo" |
47,839 | <question>: What was the average attendance when the record was 58–49? <context>: CREATE TABLE table_name_63 (attendance INTEGER, record VARCHAR) | SELECT AVG(attendance) FROM table_name_63 WHERE record = "58–49" |
47,840 | <question>: What was the attendance when the score was 8–7? <context>: CREATE TABLE table_name_16 (attendance INTEGER, score VARCHAR) | SELECT SUM(attendance) FROM table_name_16 WHERE score = "8–7" |
47,841 | <question>: What was the attendance for july 18? <context>: CREATE TABLE table_name_84 (attendance VARCHAR, date VARCHAR) | SELECT COUNT(attendance) FROM table_name_84 WHERE date = "july 18" |
47,842 | <question>: How many strokes to par when the score is 1 up? <context>: CREATE TABLE table_name_13 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_13 WHERE score = "1 up" |
47,843 | <question>: Name the series for game 5 <context>: CREATE TABLE table_name_12 (series VARCHAR, game VARCHAR) | SELECT series FROM table_name_12 WHERE game = "game 5" |
47,844 | <question>: Name the site for game of game 2 <context>: CREATE TABLE table_name_26 (site VARCHAR, game VARCHAR) | SELECT site FROM table_name_26 WHERE game = "game 2" |
47,845 | <question>: Name the site with game of game 6 <context>: CREATE TABLE table_name_49 (site VARCHAR, game VARCHAR) | SELECT site FROM table_name_49 WHERE game = "game 6" |
47,846 | <question>: Name the series with game of game 6 <context>: CREATE TABLE table_name_58 (series VARCHAR, game VARCHAR) | SELECT series FROM table_name_58 WHERE game = "game 6" |
47,847 | <question>: What is the location attendance from Dwyane Wade (27) high points? <context>: CREATE TABLE table_name_63 (location_attendance VARCHAR, high_points VARCHAR) | SELECT location_attendance FROM table_name_63 WHERE high_points = "dwyane wade (27)" |
47,848 | <question>: What was the high assists from a high points of dorell wright (20)? <context>: CREATE TABLE table_name_98 (high_assists VARCHAR, high_points VARCHAR) | SELECT high_assists FROM table_name_98 WHERE high_points = "dorell wright (20)" |
47,849 | <question>: What was the high rebounds from the date of April 14? <context>: CREATE TABLE table_name_29 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_name_29 WHERE date = "april 14" |
47,850 | <question>: For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)? <context>: CREATE TABLE table_name_41 (fuel_propulsion VARCHAR, year VARCHAR, numbers__quantity_ordered_ VARCHAR) | SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = "4756-4788 (33 buses)" |
47,851 | <question>: What year was the diesel fuel propulsion, with a length of 40', and numbers (quanity ordered) of 3701-3729 (29 buses), retired? <context>: CREATE TABLE table_name_2 (year VARCHAR, numbers__quantity_ordered_ VARCHAR, fuel_propulsion VARCHAR, length VARCHAR) | SELECT year AS Retired FROM table_name_2 WHERE fuel_propulsion = "diesel" AND length = "40'" AND numbers__quantity_ordered_ = "3701-3729 (29 buses)" |
47,852 | <question>: What is the location attendance of the game with a 27-22 record? <context>: CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_name_27 WHERE record = "27-22" |
47,853 | <question>: What is the location attendance of the game on February 25? <context>: CREATE TABLE table_name_52 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_name_52 WHERE date = "february 25" |
47,854 | <question>: What's the largest Fall 08 number when fall 09 is less than 82, fall 06 is 5, and fall 05 is less than 3? <context>: CREATE TABLE table_name_96 (fall_08 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR, fall_06 VARCHAR) | SELECT MAX(fall_08) FROM table_name_96 WHERE fall_09 < 82 AND fall_06 = 5 AND fall_05 < 3 |
47,855 | <question>: What is the mean Fall 09 number where fall 05 is less than 3? <context>: CREATE TABLE table_name_34 (fall_09 INTEGER, fall_05 INTEGER) | SELECT AVG(fall_09) FROM table_name_34 WHERE fall_05 < 3 |
47,856 | <question>: What is the sum amount of fall 05 when fall 08 is more than 5, fall 06 is more than 7, the state is Maryland, and fall 09 is more than 471? <context>: CREATE TABLE table_name_31 (fall_05 VARCHAR, fall_09 VARCHAR, states VARCHAR, fall_08 VARCHAR, fall_06 VARCHAR) | SELECT COUNT(fall_05) FROM table_name_31 WHERE fall_08 > 5 AND fall_06 > 7 AND states = "maryland" AND fall_09 > 471 |
47,857 | <question>: What's the smallest fall 05 number when fall 09 is less than 14 and fall 08 is more than 5? <context>: CREATE TABLE table_name_22 (fall_05 INTEGER, fall_09 VARCHAR, fall_08 VARCHAR) | SELECT MIN(fall_05) FROM table_name_22 WHERE fall_09 < 14 AND fall_08 > 5 |
47,858 | <question>: What is in the notes for men's speed skating? <context>: CREATE TABLE table_name_17 (notes VARCHAR, time VARCHAR) | SELECT notes FROM table_name_17 WHERE time = "men's speed skating" |
47,859 | <question>: What's the date when the location is Berlin? <context>: CREATE TABLE table_name_76 (date VARCHAR, location VARCHAR) | SELECT date FROM table_name_76 WHERE location = "berlin" |
47,860 | <question>: What's the location for men's speed skating? <context>: CREATE TABLE table_name_70 (location VARCHAR, distance VARCHAR) | SELECT location FROM table_name_70 WHERE distance = "men's speed skating" |
47,861 | <question>: What's the location when the notes area is notes? <context>: CREATE TABLE table_name_27 (location VARCHAR) | SELECT location FROM table_name_27 WHERE "notes" = "notes" |
47,862 | <question>: What is the notes left for Berlin? <context>: CREATE TABLE table_name_96 (notes VARCHAR, location VARCHAR) | SELECT notes FROM table_name_96 WHERE location = "berlin" |
47,863 | <question>: Which is located in Angola and entered service in 1988? <context>: CREATE TABLE table_name_98 (name VARCHAR, location VARCHAR, entered_service VARCHAR) | SELECT name FROM table_name_98 WHERE location = "angola" AND entered_service = "1988" |
47,864 | <question>: What type entered service in 2000? <context>: CREATE TABLE table_name_70 (type VARCHAR, entered_service VARCHAR) | SELECT type FROM table_name_70 WHERE entered_service = "2000" |
47,865 | <question>: What is the water depth of Sedco 702, located in Nigeria? <context>: CREATE TABLE table_name_59 (water_depth VARCHAR, location VARCHAR, name VARCHAR) | SELECT water_depth FROM table_name_59 WHERE location = "nigeria" AND name = "sedco 702" |
47,866 | <question>: Which is located in Nigeria? <context>: CREATE TABLE table_name_72 (name VARCHAR, location VARCHAR) | SELECT name FROM table_name_72 WHERE location = "nigeria" |
47,867 | <question>: Which type entered service in 1976/1997 and is located in Brazil? <context>: CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR, entered_service VARCHAR) | SELECT type FROM table_name_87 WHERE location = "brazil" AND entered_service = "1976/1997" |
47,868 | <question>: Where is Transocean Richardson, a semi entered into service in 1988? <context>: CREATE TABLE table_name_31 (location VARCHAR, name VARCHAR, type VARCHAR, entered_service VARCHAR) | SELECT location FROM table_name_31 WHERE type = "semi" AND entered_service = "1988" AND name = "transocean richardson" |
47,869 | <question>: What is the total number of Yds/Att where Net Yds was 1818, and Rank was larger than 1? <context>: CREATE TABLE table_name_10 (yds_att VARCHAR, net_yds VARCHAR, rank VARCHAR) | SELECT COUNT(yds_att) FROM table_name_10 WHERE net_yds = 1818 AND rank > 1 |
47,870 | <question>: What is the lowest Rank when Attempts was 319, and the Year was larger than 2000? <context>: CREATE TABLE table_name_46 (rank INTEGER, attempts VARCHAR, year VARCHAR) | SELECT MIN(rank) FROM table_name_46 WHERE attempts = 319 AND year > 2000 |
47,871 | <question>: What is the total number of Attempts when Rank was larger than 4, and Net Yds was smaller than 1674? <context>: CREATE TABLE table_name_95 (attempts VARCHAR, rank VARCHAR, net_yds VARCHAR) | SELECT COUNT(attempts) FROM table_name_95 WHERE rank > 4 AND net_yds < 1674 |
47,872 | <question>: What is the new conference for the Gauchos team? <context>: CREATE TABLE table_name_28 (new_conference VARCHAR, team_nickname VARCHAR) | SELECT new_conference FROM table_name_28 WHERE team_nickname = "gauchos" |
47,873 | <question>: What is the new classification for La Mirada, California? <context>: CREATE TABLE table_name_69 (new_classification VARCHAR, location VARCHAR) | SELECT new_classification FROM table_name_69 WHERE location = "la mirada, california" |
47,874 | <question>: What is the tenure for the Tritons team? <context>: CREATE TABLE table_name_28 (tenure VARCHAR, team_nickname VARCHAR) | SELECT tenure FROM table_name_28 WHERE team_nickname = "tritons" |
47,875 | <question>: Which opponent was present on March 28? <context>: CREATE TABLE table_name_40 (opponent VARCHAR, march VARCHAR) | SELECT opponent FROM table_name_40 WHERE march = 28 |
47,876 | <question>: What is the mean game number when the points scored were more than 99? <context>: CREATE TABLE table_name_73 (game INTEGER, points INTEGER) | SELECT AVG(game) FROM table_name_73 WHERE points > 99 |
47,877 | <question>: Who is the opponent in game 7? <context>: CREATE TABLE table_name_21 (opponent VARCHAR, game VARCHAR) | SELECT opponent FROM table_name_21 WHERE game = 7 |
47,878 | <question>: What day in December was the game before game 11 with a record of 7-2-2? <context>: CREATE TABLE table_name_63 (december INTEGER, record VARCHAR, game VARCHAR) | SELECT SUM(december) FROM table_name_63 WHERE record = "7-2-2" AND game < 11 |
47,879 | <question>: What is the day in December of the game against the Boston Bruins? <context>: CREATE TABLE table_name_11 (december VARCHAR, opponent VARCHAR) | SELECT COUNT(december) FROM table_name_11 WHERE opponent = "boston bruins" |
47,880 | <question>: What is the average day in December of the game with a 8-2-3 record? <context>: CREATE TABLE table_name_25 (december INTEGER, record VARCHAR) | SELECT AVG(december) FROM table_name_25 WHERE record = "8-2-3" |
47,881 | <question>: How many seats have a quantity over 45? <context>: CREATE TABLE table_name_53 (seats INTEGER, quantity INTEGER) | SELECT SUM(seats) FROM table_name_53 WHERE quantity > 45 |
47,882 | <question>: Which owner has 84 seats? <context>: CREATE TABLE table_name_60 (owner VARCHAR, seats VARCHAR) | SELECT owner FROM table_name_60 WHERE seats = 84 |
47,883 | <question>: Which deliver has 16 and a standing more than 128? <context>: CREATE TABLE table_name_93 (delivery VARCHAR, quantity VARCHAR, standing VARCHAR) | SELECT delivery FROM table_name_93 WHERE quantity = 16 AND standing > 128 |
47,884 | <question>: What is the host city that has Alicia Keys listed as a host? <context>: CREATE TABLE table_name_43 (host_city VARCHAR, hosts VARCHAR) | SELECT host_city FROM table_name_43 WHERE hosts = "alicia keys" |
47,885 | <question>: What is the host city of the Singapore Indoor Stadium venue and a Valentine's Day theme? <context>: CREATE TABLE table_name_24 (host_city VARCHAR, venue VARCHAR, theme VARCHAR) | SELECT host_city FROM table_name_24 WHERE venue = "singapore indoor stadium" AND theme = "valentine's day" |
47,886 | <question>: What year will Bangkok be the host city and Alicia Keys host? <context>: CREATE TABLE table_name_78 (year VARCHAR, host_city VARCHAR, hosts VARCHAR) | SELECT year FROM table_name_78 WHERE host_city = "bangkok" AND hosts = "alicia keys" |
47,887 | <question>: Who are the hosts from the event with a theme of codehunters and the host city of Bangkok? <context>: CREATE TABLE table_name_88 (hosts VARCHAR, host_city VARCHAR, theme VARCHAR) | SELECT hosts FROM table_name_88 WHERE host_city = "bangkok" AND theme = "codehunters" |
47,888 | <question>: Who are the hosts for the 2004 event? <context>: CREATE TABLE table_name_2 (hosts VARCHAR, year VARCHAR) | SELECT hosts FROM table_name_2 WHERE year = "2004" |
47,889 | <question>: What date has a margin of victory of 1 stroke over Greg Kraft? <context>: CREATE TABLE table_name_21 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_21 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "greg kraft" |
47,890 | <question>: What was the margin of victory over Steve Rintoul? <context>: CREATE TABLE table_name_61 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_61 WHERE runner_s__up = "steve rintoul" |
47,891 | <question>: What was the margin of victory over Brad Faxon? <context>: CREATE TABLE table_name_51 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | SELECT margin_of_victory FROM table_name_51 WHERE runner_s__up = "brad faxon" |
47,892 | <question>: What years show Model of 2.0 tdi (cr) dpf? <context>: CREATE TABLE table_name_62 (years VARCHAR, model VARCHAR) | SELECT years FROM table_name_62 WHERE model = "2.0 tdi (cr) dpf" |
47,893 | <question>: What is the power for model 2.0 tdi (cr) dpf, and a Years of 2010–2011? <context>: CREATE TABLE table_name_28 (power VARCHAR, model VARCHAR, years VARCHAR) | SELECT power FROM table_name_28 WHERE model = "2.0 tdi (cr) dpf" AND years = "2010–2011" |
47,894 | <question>: What is the torque for Model of 2.0 bitdi (cr) dpf, in 2010–? <context>: CREATE TABLE table_name_37 (torque VARCHAR, model VARCHAR, years VARCHAR) | SELECT torque FROM table_name_37 WHERE model = "2.0 bitdi (cr) dpf" AND years = "2010–" |
47,895 | <question>: What is the engine for model 2.0 bitdi (cr) dpf, with a Torque of n·m (lb·ft) @ 1500–2000 rpm? <context>: CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR, torque VARCHAR) | SELECT engine FROM table_name_87 WHERE model = "2.0 bitdi (cr) dpf" AND torque = "n·m (lb·ft) @ 1500–2000 rpm" |
47,896 | <question>: What is the Court Rank of Son of Norihiro's Lineage? <context>: CREATE TABLE table_name_6 (court_rank VARCHAR, lineage VARCHAR) | SELECT court_rank FROM table_name_6 WHERE lineage = "son of norihiro" |
47,897 | <question>: Name the 1811 for 1801 of 1801 <context>: CREATE TABLE table_name_47 (Id VARCHAR) | SELECT 1811 FROM table_name_47 WHERE "1801" = "1801" |
47,898 | <question>: Name the 1861 with 1851 of 5291 <context>: CREATE TABLE table_name_97 (Id VARCHAR) | SELECT 1861 FROM table_name_97 WHERE 1851 = "5291" |
47,899 | <question>: Name the 1901 with 1851 of 1961 <context>: CREATE TABLE table_name_12 (Id VARCHAR) | SELECT 1901 FROM table_name_12 WHERE 1851 = "1961" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.