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