Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
41,200 | <question>: what is the number of areas where the townland is brittas? <context>: CREATE TABLE table_30120560_1 (area__acres__ VARCHAR, townland VARCHAR) | SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Brittas" |
41,201 | <question>: What is the Poor Law Union for Coolkirky? <context>: CREATE TABLE table_30120633_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT poor_law_union FROM table_30120633_1 WHERE townland = "Coolkirky" |
41,202 | <question>: How few acres is the area of Clashroe? <context>: CREATE TABLE table_30120633_1 (area__acres__ INTEGER, townland VARCHAR) | SELECT MIN(area__acres__) FROM table_30120633_1 WHERE townland = "Clashroe" |
41,203 | <question>: Which townland has a 213 acre area? <context>: CREATE TABLE table_30120633_1 (townland VARCHAR, area__acres__ VARCHAR) | SELECT townland FROM table_30120633_1 WHERE area__acres__ = 213 |
41,204 | <question>: How many acres does the area of Lissagroom with Bandon as its poor law union cover? <context>: CREATE TABLE table_30120633_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) | SELECT area__acres__ FROM table_30120633_1 WHERE poor_law_union = "Bandon" AND townland = "Lissagroom" |
41,205 | <question>: What is Ballymurphy North's civil parish? <context>: CREATE TABLE table_30120633_1 (civil_parish VARCHAR, townland VARCHAR) | SELECT civil_parish FROM table_30120633_1 WHERE townland = "Ballymurphy North" |
41,206 | <question>: How many acres in the townland of Coomroe? <context>: CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, townland VARCHAR) | SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = "Coomroe" |
41,207 | <question>: What are all the acreages of the townlands in the Macroom poor law union and Macroom civil parish? <context>: CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR) | SELECT area__acres__ FROM table_30120761_1 WHERE poor_law_union = "Macroom" AND civil_parish = "Macroom" |
41,208 | <question>: How many baronies is Maulnagrough a part of? <context>: CREATE TABLE table_30120761_1 (barony VARCHAR, townland VARCHAR) | SELECT COUNT(barony) FROM table_30120761_1 WHERE townland = "Maulnagrough" |
41,209 | <question>: What are all of the townlands that have exactly 131 acres. <context>: CREATE TABLE table_30120761_1 (townland VARCHAR, area__acres__ VARCHAR) | SELECT townland FROM table_30120761_1 WHERE area__acres__ = 131 |
41,210 | <question>: What is the acreage of the Maghereen in the civil parish of Macroom? <context>: CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, civil_parish VARCHAR, townland VARCHAR) | SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE civil_parish = "Macroom" AND townland = "Maghereen" |
41,211 | <question>: What is the poor law union when the townland is bohonagh? <context>: CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT poor_law_union FROM table_30121075_1 WHERE townland = "Bohonagh" |
41,212 | <question>: How many entries are in barony when the townland is derrigra? <context>: CREATE TABLE table_30121075_1 (barony VARCHAR, townland VARCHAR) | SELECT COUNT(barony) FROM table_30121075_1 WHERE townland = "Derrigra" |
41,213 | <question>: How many entries are listed in poor law union when townland is dromidiclogh? <context>: CREATE TABLE table_30121075_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT COUNT(poor_law_union) FROM table_30121075_1 WHERE townland = "Dromidiclogh" |
41,214 | <question>: What is the area when the poor law union is skibbereen and the townland is knockmore? <context>: CREATE TABLE table_30121075_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, townland VARCHAR) | SELECT area__acres__ FROM table_30121075_1 WHERE poor_law_union = "Skibbereen" AND townland = "Knockmore" |
41,215 | <question>: What is the circuit located in baltimore , maryland? <context>: CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR) | SELECT circuit FROM table_30134667_2 WHERE location = "Baltimore , Maryland" |
41,216 | <question>: Which circuit was located in st. petersburg, florida? <context>: CREATE TABLE table_30134667_2 (circuit VARCHAR, location VARCHAR) | SELECT circuit FROM table_30134667_2 WHERE location = "St. Petersburg, Florida" |
41,217 | <question>: Who had the fastest lap in bowmanville, ontario? <context>: CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, location VARCHAR) | SELECT fastest_lap FROM table_30134667_2 WHERE location = "Bowmanville, Ontario" |
41,218 | <question>: Who had the fastest lap on september 4? <context>: CREATE TABLE table_30134667_2 (fastest_lap VARCHAR, date VARCHAR) | SELECT fastest_lap FROM table_30134667_2 WHERE date = "September 4" |
41,219 | <question>: What is the 1985 value for the year when GDP as of 2012 after PPP was 369.38? <context>: CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR) | SELECT 1985 FROM table_30133_3 WHERE gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ = "369.38" |
41,220 | <question>: What was the gap from Thailand as of 2012 for China? <context>: CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, economy VARCHAR) | SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE economy = "China" |
41,221 | <question>: What is the maximum 2010 value for China? <context>: CREATE TABLE table_30133_3 (economy VARCHAR) | SELECT MAX(2010) FROM table_30133_3 WHERE economy = "China" |
41,222 | <question>: What is the gap from Thailand as of 2012 for the country whose 1980 gap was 0.29? <context>: CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, gap_from_thailand_as_of_1980__times_ VARCHAR) | SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "0.29" |
41,223 | <question>: How many GDPs as of 2012 after PPP values are associated with a 2012 value of 23113? <context>: CREATE TABLE table_30133_3 (gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_ VARCHAR) | SELECT COUNT(gdp_as_of_2012_after_purchasing_power_parity__ppp__calculations__usd_billions_) FROM table_30133_3 WHERE 2012 = 23113 |
41,224 | <question>: What is the max 2010 value for a 1980 gap value is 2.43? <context>: CREATE TABLE table_30133_3 (gap_from_thailand_as_of_1980__times_ VARCHAR) | SELECT MAX(2010) FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "2.43" |
41,225 | <question>: How many viewers in the UK did episode 50 have? <context>: CREATE TABLE table_30139175_3 (uk_total_viewers VARCHAR, episode_no VARCHAR) | SELECT uk_total_viewers FROM table_30139175_3 WHERE episode_no = 50 |
41,226 | <question>: Tell me the doubles W-L for player of laurynas grigelis <context>: CREATE TABLE table_name_91 (doubles_w_l VARCHAR, player VARCHAR) | SELECT doubles_w_l FROM table_name_91 WHERE player = "laurynas grigelis" |
41,227 | <question>: What is the newest Cap with a Goals stat larger than 17 and which was done by Brian Turner? <context>: CREATE TABLE table_name_64 (most_recent_cap VARCHAR, goals VARCHAR, name VARCHAR) | SELECT most_recent_cap FROM table_name_64 WHERE goals > 17 AND name = "brian turner" |
41,228 | <question>: What is the nationality of school/club team of barton cc (ks)? <context>: CREATE TABLE table_name_65 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_name_65 WHERE school_club_team = "barton cc (ks)" |
41,229 | <question>: Shawn Respert play for what school/club team? <context>: CREATE TABLE table_name_66 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_66 WHERE player = "shawn respert" |
41,230 | <question>: Who has position in year 1996-97 in Toronto? <context>: CREATE TABLE table_name_88 (position VARCHAR, years_in_toronto VARCHAR) | SELECT position FROM table_name_88 WHERE years_in_toronto = "1996-97" |
41,231 | <question>: Roy Rogers play for what school/club team? <context>: CREATE TABLE table_name_38 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_38 WHERE player = "roy rogers" |
41,232 | <question>: What year is United States school/club team from Arkansas play in Toronto <context>: CREATE TABLE table_name_87 (years_in_toronto VARCHAR, nationality VARCHAR, school_club_team VARCHAR) | SELECT years_in_toronto FROM table_name_87 WHERE nationality = "united states" AND school_club_team = "arkansas" |
41,233 | <question>: Who is the player from United States who play in year 2003-06 in Toronto? <context>: CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR, years_in_toronto VARCHAR) | SELECT player FROM table_name_8 WHERE nationality = "united states" AND years_in_toronto = "2003-06" |
41,234 | <question>: Tell me the average units sold for square enix <context>: CREATE TABLE table_name_46 (units_sold INTEGER, publisher VARCHAR) | SELECT AVG(units_sold) FROM table_name_46 WHERE publisher = "square enix" |
41,235 | <question>: Tell me the date for nicolas pereira <context>: CREATE TABLE table_name_60 (date VARCHAR, partnering VARCHAR) | SELECT date FROM table_name_60 WHERE partnering = "nicolas pereira" |
41,236 | <question>: what is the date in 1986? <context>: CREATE TABLE table_name_14 (date VARCHAR, year VARCHAR) | SELECT date FROM table_name_14 WHERE year = 1986 |
41,237 | <question>: What is the average year for Ponce, Puerto Rico events? <context>: CREATE TABLE table_name_15 (year INTEGER, venue VARCHAR) | SELECT AVG(year) FROM table_name_15 WHERE venue = "ponce, puerto rico" |
41,238 | <question>: What year did she place 8th in the junior race? <context>: CREATE TABLE table_name_9 (year VARCHAR, event VARCHAR, position VARCHAR) | SELECT year FROM table_name_9 WHERE event = "junior race" AND position = "8th" |
41,239 | <question>: Tell me the NHL team for ryan johnson <context>: CREATE TABLE table_name_69 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_69 WHERE player = "ryan johnson" |
41,240 | <question>: Tell me the position for pick of 47 <context>: CREATE TABLE table_name_68 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_68 WHERE pick = "47" |
41,241 | <question>: Tell me the pick for pittsburgh penguins <context>: CREATE TABLE table_name_12 (pick VARCHAR, nhl_team VARCHAR) | SELECT pick FROM table_name_12 WHERE nhl_team = "pittsburgh penguins" |
41,242 | <question>: Tell me the nationality for rudolf vercik <context>: CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_51 WHERE player = "rudolf vercik" |
41,243 | <question>: Tell me the player for nationality of canada for pick of 43 <context>: CREATE TABLE table_name_85 (player VARCHAR, nationality VARCHAR, pick VARCHAR) | SELECT player FROM table_name_85 WHERE nationality = "canada" AND pick = "43" |
41,244 | <question>: Tell me the college for jason holland <context>: CREATE TABLE table_name_2 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_name_2 WHERE player = "jason holland" |
41,245 | <question>: Tell me the date for rudolf caracciola for avusrennen <context>: CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, name VARCHAR) | SELECT date FROM table_name_91 WHERE winning_driver = "rudolf caracciola" AND name = "avusrennen" |
41,246 | <question>: Tell me the circuit for 10 may for targa florio <context>: CREATE TABLE table_name_79 (circuit VARCHAR, date VARCHAR, name VARCHAR) | SELECT circuit FROM table_name_79 WHERE date = "10 may" AND name = "targa florio" |
41,247 | <question>: What was the score of the Washington tournament? <context>: CREATE TABLE table_name_20 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_20 WHERE tournament = "washington" |
41,248 | <question>: On what date was Patty Fendick an opponent? <context>: CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_95 WHERE opponent = "patty fendick" |
41,249 | <question>: What score does Vasil Levski National Stadium, Sofia earn? <context>: CREATE TABLE table_name_62 (score VARCHAR, venue VARCHAR) | SELECT score FROM table_name_62 WHERE venue = "vasil levski national stadium, sofia" |
41,250 | <question>: What score did vasil levski national stadium, sofia, which was friendly during competition, earn? <context>: CREATE TABLE table_name_96 (score VARCHAR, competition VARCHAR, venue VARCHAR) | SELECT score FROM table_name_96 WHERE competition = "friendly" AND venue = "vasil levski national stadium, sofia" |
41,251 | <question>: What is the nationality of the Washington Capitals? <context>: CREATE TABLE table_name_68 (nationality VARCHAR, nhl_team VARCHAR) | SELECT nationality FROM table_name_68 WHERE nhl_team = "washington capitals" |
41,252 | <question>: On what NHL team does Roman Vopat play for? <context>: CREATE TABLE table_name_57 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_57 WHERE player = "roman vopat" |
41,253 | <question>: What is the position of the player from the Ukraine? <context>: CREATE TABLE table_name_1 (position VARCHAR, nationality VARCHAR) | SELECT position FROM table_name_1 WHERE nationality = "ukraine" |
41,254 | <question>: What Tournament did he place 12th in? <context>: CREATE TABLE table_name_58 (tournament VARCHAR, result VARCHAR) | SELECT tournament FROM table_name_58 WHERE result = "12th" |
41,255 | <question>: What was the first year he placed 12th <context>: CREATE TABLE table_name_9 (year INTEGER, result VARCHAR) | SELECT MIN(year) FROM table_name_9 WHERE result = "12th" |
41,256 | <question>: Tell me the circuit for alfa romeo swedish ice race <context>: CREATE TABLE table_name_5 (circuit VARCHAR, winning_constructor VARCHAR, name VARCHAR) | SELECT circuit FROM table_name_5 WHERE winning_constructor = "alfa romeo" AND name = "swedish ice race" |
41,257 | <question>: Tell me the date for bugatti fpr stanislas czaykowski <context>: CREATE TABLE table_name_60 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR) | SELECT date FROM table_name_60 WHERE winning_constructor = "bugatti" AND winning_driver = "stanislas czaykowski" |
41,258 | <question>: Tell me the circuit for 20 august <context>: CREATE TABLE table_name_99 (circuit VARCHAR, date VARCHAR) | SELECT circuit FROM table_name_99 WHERE date = "20 august" |
41,259 | <question>: Tell me the winning driver for avusrennen <context>: CREATE TABLE table_name_70 (winning_driver VARCHAR, name VARCHAR) | SELECT winning_driver FROM table_name_70 WHERE name = "avusrennen" |
41,260 | <question>: Tell me the report for bugatti and brooklands <context>: CREATE TABLE table_name_96 (report VARCHAR, winning_constructor VARCHAR, circuit VARCHAR) | SELECT report FROM table_name_96 WHERE winning_constructor = "bugatti" AND circuit = "brooklands" |
41,261 | <question>: How many years has there been a competition in Helsinki? <context>: CREATE TABLE table_name_78 (year VARCHAR, location VARCHAR) | SELECT COUNT(year) FROM table_name_78 WHERE location = "helsinki" |
41,262 | <question>: Which competition before 1982 had a score of 2:3? <context>: CREATE TABLE table_name_96 (competition VARCHAR, year VARCHAR, score VARCHAR) | SELECT competition FROM table_name_96 WHERE year < 1982 AND score = "2:3" |
41,263 | <question>: Which competition occurred after 1980 with a score of 0:5 in Jerusalem? <context>: CREATE TABLE table_name_51 (competition VARCHAR, location VARCHAR, year VARCHAR, score VARCHAR) | SELECT competition FROM table_name_51 WHERE year > 1980 AND score = "0:5" AND location = "jerusalem" |
41,264 | <question>: When was there an attendance of 51,342? <context>: CREATE TABLE table_name_6 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_6 WHERE attendance = "51,342" |
41,265 | <question>: What was the attendance during week 7? <context>: CREATE TABLE table_name_88 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_88 WHERE week = 7 |
41,266 | <question>: What was the score during week 16? <context>: CREATE TABLE table_name_12 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_12 WHERE week = 16 |
41,267 | <question>: Who is the mInister who left office during 1960? <context>: CREATE TABLE table_name_58 (minister VARCHAR, left_office VARCHAR) | SELECT minister FROM table_name_58 WHERE left_office = "1960" |
41,268 | <question>: Which government is number 6? <context>: CREATE TABLE table_name_63 (government VARCHAR, number VARCHAR) | SELECT government FROM table_name_63 WHERE number = 6 |
41,269 | <question>: Which rider had a speed of 90.57mph? <context>: CREATE TABLE table_name_59 (rider VARCHAR, speed VARCHAR) | SELECT rider FROM table_name_59 WHERE speed = "90.57mph" |
41,270 | <question>: Which country has a place smaller than 8 and points smaller than 5? <context>: CREATE TABLE table_name_63 (country VARCHAR, place VARCHAR, points VARCHAR) | SELECT country FROM table_name_63 WHERE place < 8 AND points < 5 |
41,271 | <question>: What is the lowest number of Losses when the number of Wins is less than 4, the number of Tie is 2, and the Place is 5? <context>: CREATE TABLE table_name_38 (losses INTEGER, place VARCHAR, wins VARCHAR, ties VARCHAR) | SELECT MIN(losses) FROM table_name_38 WHERE wins < 4 AND ties = 2 AND place = 5 |
41,272 | <question>: Tell me the post-season record for kansas city <context>: CREATE TABLE table_name_55 (post_season_record_ VARCHAR, e_ VARCHAR, mlb_affiliate VARCHAR) | SELECT post_season_record_[e_] FROM table_name_55 WHERE mlb_affiliate = "kansas city" |
41,273 | <question>: Tell me the venue of 29 april 2007 <context>: CREATE TABLE table_name_14 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_14 WHERE date = "29 april 2007" |
41,274 | <question>: Tell me the competition of 20 august 2008 <context>: CREATE TABLE table_name_87 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_87 WHERE date = "20 august 2008" |
41,275 | <question>: Tell me the date of stade des martyrs, dr congo <context>: CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_89 WHERE venue = "stade des martyrs, dr congo" |
41,276 | <question>: How much money, in millions, is paid to Infotalent? <context>: CREATE TABLE table_name_92 (amount__millions_ VARCHAR, payee VARCHAR) | SELECT amount__millions_ FROM table_name_92 WHERE payee = "infotalent" |
41,277 | <question>: What is the purpose of Euromarine? <context>: CREATE TABLE table_name_52 (purpose VARCHAR, payee VARCHAR) | SELECT purpose FROM table_name_52 WHERE payee = "euromarine" |
41,278 | <question>: What signatory has a purpose of police security and Infotalent payee? <context>: CREATE TABLE table_name_71 (signatories VARCHAR, purpose VARCHAR, payee VARCHAR) | SELECT signatories FROM table_name_71 WHERE purpose = "police security" AND payee = "infotalent" |
41,279 | <question>: Tell me the highest launced for trn <context>: CREATE TABLE table_name_1 (launched INTEGER, name VARCHAR) | SELECT MAX(launched) FROM table_name_1 WHERE name = "trn" |
41,280 | <question>: Tell me the period for red rock <context>: CREATE TABLE table_name_25 (period VARCHAR, place VARCHAR) | SELECT period FROM table_name_25 WHERE place = "red rock" |
41,281 | <question>: Tell me the province for 260km ese of calgary <context>: CREATE TABLE table_name_15 (province VARCHAR, location VARCHAR) | SELECT province FROM table_name_15 WHERE location = "260km ese of calgary" |
41,282 | <question>: Tell me the province of 1941-1946 <context>: CREATE TABLE table_name_49 (province VARCHAR, period VARCHAR) | SELECT province FROM table_name_49 WHERE period = "1941-1946" |
41,283 | <question>: Tell me the degree for chemistry 1965 <context>: CREATE TABLE table_name_90 (degree VARCHAR, award_year VARCHAR, award VARCHAR) | SELECT degree FROM table_name_90 WHERE award_year = 1965 AND award = "chemistry" |
41,284 | <question>: What is the Election date for Member william richmond category:articles with hcards? <context>: CREATE TABLE table_name_49 (election_date VARCHAR, member VARCHAR) | SELECT election_date FROM table_name_49 WHERE member = "william richmond category:articles with hcards" |
41,285 | <question>: What is the election date for the city of auckland category:articles with hcards? <context>: CREATE TABLE table_name_16 (election_date VARCHAR, electorate VARCHAR) | SELECT election_date FROM table_name_16 WHERE electorate = "city of auckland category:articles with hcards" |
41,286 | <question>: What electorate does Member dingley brittin category:articles with hcards represent? <context>: CREATE TABLE table_name_37 (electorate VARCHAR, member VARCHAR) | SELECT electorate FROM table_name_37 WHERE member = "dingley brittin category:articles with hcards" |
41,287 | <question>: What is the election date for the electorate of member charles brown category:articles with hcards? <context>: CREATE TABLE table_name_94 (election_date VARCHAR, member VARCHAR) | SELECT election_date FROM table_name_94 WHERE member = "charles brown category:articles with hcards" |
41,288 | <question>: Tell me the date for acts of 6 bands and year larger than 1981 for monsters of rock <context>: CREATE TABLE table_name_4 (date VARCHAR, event VARCHAR, acts VARCHAR, year VARCHAR) | SELECT date FROM table_name_4 WHERE acts = "6 bands" AND year > 1981 AND event = "monsters of rock" |
41,289 | <question>: Tell me the stages for 1981 <context>: CREATE TABLE table_name_42 (stages VARCHAR, year VARCHAR) | SELECT stages FROM table_name_42 WHERE year = 1981 |
41,290 | <question>: Tell me the event for 6 bands <context>: CREATE TABLE table_name_74 (event VARCHAR, acts VARCHAR) | SELECT event FROM table_name_74 WHERE acts = "6 bands" |
41,291 | <question>: What is the lightweight value with no information model and the flexible value is unknown? <context>: CREATE TABLE table_name_79 (lightweight VARCHAR, information_model VARCHAR, flexible VARCHAR) | SELECT lightweight FROM table_name_79 WHERE information_model = "no" AND flexible = "unknown" |
41,292 | <question>: What is the bore for a 9-cyl radial on a 9 AD? <context>: CREATE TABLE table_name_8 (bore VARCHAR, cyl VARCHAR, name VARCHAR) | SELECT bore FROM table_name_8 WHERE cyl = "9-cyl radial" AND name = "9 ad" |
41,293 | <question>: What bore goes with an 18 AB? <context>: CREATE TABLE table_name_9 (bore VARCHAR, name VARCHAR) | SELECT bore FROM table_name_9 WHERE name = "18 ab" |
41,294 | <question>: Tell me the venue for notes of 10.93 secs <context>: CREATE TABLE table_name_45 (venue VARCHAR, notes VARCHAR) | SELECT venue FROM table_name_45 WHERE notes = "10.93 secs" |
41,295 | <question>: Tell me the venue for year less than 2003 <context>: CREATE TABLE table_name_81 (venue VARCHAR, year INTEGER) | SELECT venue FROM table_name_81 WHERE year < 2003 |
41,296 | <question>: What is the total number of points team Alfa Romeo 184T won? <context>: CREATE TABLE table_name_56 (points INTEGER, team_chassis VARCHAR) | SELECT SUM(points) FROM table_name_56 WHERE team_chassis = "alfa romeo 184t" |
41,297 | <question>: What engine was used after 1984? <context>: CREATE TABLE table_name_87 (engine VARCHAR, year INTEGER) | SELECT engine FROM table_name_87 WHERE year > 1984 |
41,298 | <question>: In which year were the points more than 0? <context>: CREATE TABLE table_name_72 (year VARCHAR, points INTEGER) | SELECT year FROM table_name_72 WHERE points > 0 |
41,299 | <question>: What were the Tyres after 1984? <context>: CREATE TABLE table_name_22 (tyres VARCHAR, year INTEGER) | SELECT tyres FROM table_name_22 WHERE year > 1984 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.